Skip to content

Commit fc17f14

Browse files
committed
Update GitHub Actions workflow to use npm instead of yarn for dependency management
1 parent e3db749 commit fc17f14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 18
21-
cache: yarn
21+
cache: npm
2222

2323
- name: Install dependencies
24-
run: yarn install --frozen-lockfile
24+
run: npm install
2525
- name: Build website
26-
run: yarn build
26+
run: npm run build
2727

2828
- name: Upload Build Artifact
2929
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)