1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #4084 from node-red/add-18

Add Node 18 to test matrix
This commit is contained in:
Nick O'Leary 2023-03-02 15:43:08 +00:00 committed by GitHub
commit 4b89619ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [14, 16] node-version: [16, 18]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
@ -30,7 +30,7 @@ jobs:
run: | run: |
npm run test npm run test
- name: Publish to coveralls.io - name: Publish to coveralls.io
if: ${{ matrix.node-version == 14 }} if: ${{ matrix.node-version == 16 }}
uses: coverallsapp/github-action@v1.1.2 uses: coverallsapp/github-action@v1.1.2
with: with:
github-token: ${{ github.token }} github-token: ${{ github.token }}