Skip to content

Commit c2085c5

Browse files
committed
Fix error bring thrown by prettier.
1 parent 5288d80 commit c2085c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pages-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Deploy to GitHub Pages
33
on:
44
push:
5-
branches: ['main']
5+
branches: ["main"]
66

77
# Allows you to run this workflow manually from the Actions tab
88
workflow_dispatch:
@@ -15,7 +15,7 @@ permissions:
1515

1616
# Allow one concurrent deployment
1717
concurrency:
18-
group: 'pages'
18+
group: "pages"
1919
cancel-in-progress: true
2020

2121
jobs:
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-node@v4
3333
with:
3434
node-version: 22
35-
cache: 'npm'
35+
cache: "npm"
3636
- name: Install dependencies
3737
run: npm ci
3838
- name: Build
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/upload-pages-artifact@v3
4444
with:
4545
# Upload dist folder
46-
path: './dist'
46+
path: "./dist"
4747
- name: Deploy to GitHub Pages
4848
id: deployment
4949
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)