Skip to content

Commit c925ca7

Browse files
committed
Fixed the workflow to use yarn, rather than npm
1 parent 5de828b commit c925ca7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yml

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

3131
- name: Install dependencies
32-
run: npm ci
32+
run: yarn install --frozen-lockfile
3333

3434
- name: Build site
35-
run: npm run build
35+
run: yarn build
3636

3737
- name: Upload artifact
3838
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)