From e7f650a9eb81ac5f56d8624a12d3611a0bed6853 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Thu, 2 Mar 2023 15:20:48 +0000 Subject: [PATCH] Add node 18 and drop node 14 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b7f54c5f1..27b1f683f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14, 16] + node-version: [16, 18] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -30,7 +30,7 @@ jobs: run: | npm run test - name: Publish to coveralls.io - if: ${{ matrix.node-version == 14 }} + if: ${{ matrix.node-version == 16 }} uses: coverallsapp/github-action@v1.1.2 with: github-token: ${{ github.token }}