Skip to content

Commit

Permalink
only report coverage on one node version (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Jun 22, 2023
1 parent f81d5ed commit 21a1377
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,22 @@ jobs:
- name: Yarn
run: yarn
- name: Test
run: yarn lint && yarn coverage
run: yarn lint && yarn test

report-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Yarn
run: yarn
- name: Test
run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit 21a1377

Please sign in to comment.