Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Use npm in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
maxolofsson1 committed Dec 16, 2022
1 parent 4448956 commit 956a34a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci
env:
CI: true
NODE_ENV: "test"

- name: Run Tests
run: yarn coverage
run: npm test
env:
NODE_ENV: "test"
CI: true
Expand Down

0 comments on commit 956a34a

Please sign in to comment.