Skip to content

Commit b277f97

Browse files
committed
Fix GitHub Actions: Use yarn instead of npm for deploy-pages workflow
1 parent a12f62b commit b277f97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: '20'
28-
cache: 'npm'
28+
cache: 'yarn'
2929

3030
- name: Install dependencies
31-
run: npm ci
31+
run: yarn install
3232

3333
- name: Build project
34-
run: npm run build
34+
run: yarn build
3535

3636
- name: Setup Pages
3737
uses: actions/configure-pages@v4

0 commit comments

Comments
 (0)