From db5b0e98b5e7039c80f3216c811f9a7493e9fd9f Mon Sep 17 00:00:00 2001 From: iamwill123 Date: Sun, 2 Jul 2023 11:21:47 -0400 Subject: [PATCH] use npm instead of yarn --- .github/workflows/run-unit-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 9517fe6..db1a958 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -15,11 +15,11 @@ jobs: uses: actions/setup-node@v2 with: node-version: "16.15.1" - cache: "yarn" + cache: "npm" - name: Install Dependencies - run: yarn install + run: npm install - name: Run Unit Tests - run: yarn test:coverage + run: npm run test:coverage - name: Upload coverage to Codecov uses: codecov/codecov-action@v2 with: