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
9 changes: 5 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ jobs:
node-version:
- 18
- 20
- 22
- current
os:
- ubuntu-latest
- windows-latest
include:
- node-version: 20
- node-version: 22
os: macos-latest

steps:
Expand All @@ -35,14 +36,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: 0653d2f9752a6c6febd3bb7cabfec48439868a02350b1c46da7d60837a42ad93
Expand Down
Loading