Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ jobs:
fail-fast: false
matrix:
node-version:
- 12
- 14
- 16
- 18
- 20
- 22
- current
os:
- ubuntu-latest
Expand All @@ -35,14 +33,14 @@ jobs:
- run: npm i
- run: npm test
- run: npm run eslint
if: ${{ matrix.node-version == '20' && matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.node-version == '22' && matrix.os == 'ubuntu-latest' }}
- name: Coveralls
if: ${{ matrix.node-version == '20' && matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.node-version == '22' && matrix.os == 'ubuntu-latest' }}
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish codeclimate code coverage
if: ${{ matrix.node-version == '20' && matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.node-version == '22' && matrix.os == 'ubuntu-latest' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: d9841018a6538b102775167be6694d17433a951f694e310fa8807f26fe9e0154
Expand Down
Loading