Skip to content

Commit 6213ee0

Browse files
committed
chore: move to single quotes
1 parent f407b69 commit 6213ee0

13 files changed

Lines changed: 2316 additions & 2328 deletions

File tree

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-node@v4
1818
with:
1919
node-version: 18
20-
cache: "pnpm"
20+
cache: 'pnpm'
2121
- name: Install Node Dependencies
2222
run: pnpm install
2323
- run: pnpm run format

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/setup-node@v4
1616
with:
1717
node-version: 18
18-
cache: "pnpm"
18+
cache: 'pnpm'
1919
- name: Install Node Dependencies
2020
run: pnpm install
2121
- run: pnpm run build

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ services:
1111
- PAYLOAD_SECRET
1212
- DATABASE_URI=mongodb://mongo:27017/website
1313
volumes:
14-
- "payload-uploads:/app/dist/uploads"
14+
- 'payload-uploads:/app/dist/uploads'
1515
env_file:
16-
- path: ".env"
16+
- path: '.env'
1717
required: false
1818
restart: unless-stopped
1919
healthcheck:
20-
test: "wget --spider http://localhost:3000/api/health || exit 1"
20+
test: 'wget --spider http://localhost:3000/api/health || exit 1'
2121
interval: 10s
2222
timeout: 10s
2323
retries: 5
@@ -28,10 +28,10 @@ services:
2828
command:
2929
- --storageEngine=wiredTiger
3030
volumes:
31-
- "payload-mongo-data:/data/db"
32-
- "payload-mongo-config:/data/configdb"
31+
- 'payload-mongo-data:/data/db'
32+
- 'payload-mongo-config:/data/configdb'
3333
env_file:
34-
- path: ".env"
34+
- path: '.env'
3535
required: false
3636
restart: unless-stopped
3737
healthcheck:

0 commit comments

Comments
 (0)