Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
update CI: error if not present, use coverage command
  • Loading branch information
epreston committed Aug 6, 2023
1 parent 269549e commit b965b21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
run: npm install

- name: Lint
run: npm run lint --if-present
run: npm run lint

- name: Build
run: npm run build --if-present
run: npm run build

- name: Test
run: npm run test-run --if-present -- --coverage.reporter=json
run: npm run test-coverage -- --coverage.reporter=json

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit b965b21

Please sign in to comment.