Switch from yarn to npm

This commit is contained in:
Raymond Zhao 2025-02-03 14:45:19 -08:00
parent a4b088e410
commit 84ebec3ac2
No known key found for this signature in database
GPG key ID: FC85D7E1120707B5
5 changed files with 21 additions and 21 deletions

View file

@ -65,12 +65,12 @@ jobs:
- name: Install website node modules
working-directory: website
run: yarn install --frozen-lockfile
run: npm ci
- name: Build website
working-directory: website
run: yarn run build
run: npm run build
- name: Test website
working-directory: website
run: yarn test
run: npm run test

View file

@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # pin@v2
with:
node-version: 16
node-version: 20
- name: Cache node modules
id: cacheNodeModules
uses: actions/cache@v2