From b8ff6e92aac7d4de4210c7c4a54be7978c1d9476 Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Wed, 2 Aug 2023 18:08:48 +0200 Subject: [PATCH] drop node 12 from test matrix --- .github/workflows/nodejs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 28ac7e9..78ba74c 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -25,7 +25,7 @@ jobs: - name: Code linting uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: 14.x cache: 'npm' - run: npm ci - run: npm run lint @@ -45,11 +45,13 @@ jobs: # uses: romeovs/lcov-reporter-action@v0.2.11 tests: name: Unit tests + needs: + - lint runs-on: ubuntu-latest timeout-minutes: 1 strategy: matrix: - node-version: [12.x, 14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v3