Skip to content

Commit f642d29

Browse files
committed
updated:
- replaced npm commands with yaml to fix "The `npm ci` command can only install with an existing package-lock.json" error from the test github action
1 parent b94d936 commit f642d29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
node-version: ${{ matrix.node-version }}
3030

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

3434
- name: Build application
35-
run: npm run build --if-present
35+
run: yarn run build --if-present
3636

3737
- name: Test
38-
run: npm test
38+
run: yarn test

0 commit comments

Comments
 (0)