Skip to content

Commit d01d932

Browse files
committed
Switching to npm
1 parent f09be6c commit d01d932

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ jobs:
1616
- uses: actions/setup-node@v3
1717
with:
1818
node-version: 18
19-
cache: yarn
19+
cache: npm
20+
cache-dependency-path: website
2021

2122
- name: Install dependencies
22-
run: yarn install --frozen-lockfile
23+
run: npm ci
2324
working-directory: website
2425
- name: Build website
25-
run: yarn build
26+
run: npm run build
2627
working-directory: website
2728

2829
# Popular action to deploy to GitHub Pages:

0 commit comments

Comments
 (0)