test against node 22 #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (c) William Belle, 2021-2023. | |
# See the LICENSE file for more details. | |
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Node.js ${{ matrix.node }} CI | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ '16', '17', '18', '19', '20', '21', '22' ] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install and coverage | |
run: | | |
npm i | |
npm run coveralls | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
flag-name: node-${{ matrix.node }} | |
parallel: true | |
finish: | |
needs: build | |
runs-on: ubuntu-latest | |
name: Coveralls | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true | |
carryforward: "node-16,node-17,node-18,node-19,node-20,node-21,node-22" |