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

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 }}