Skip to content

Commit 1741621

Browse files
committed
use npm instead of yarn
1 parent 9113812 commit 1741621

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run-unit-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
uses: actions/setup-node@v2
1616
with:
1717
node-version: "16.15.1"
18-
cache: "yarn"
18+
cache: "npm"
1919
- name: Install Dependencies
20-
run: yarn install
20+
run: npm install
2121
- name: Run Unit Tests
22-
run: yarn test:coverage
22+
run: npm run test:coverage
2323
- name: Upload coverage to Codecov
2424
uses: codecov/codecov-action@v2
2525
with:

0 commit comments

Comments
 (0)