From 3a6d839dcd8dc1b97ee51504ef290ac11bdc0626 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Sat, 7 May 2022 18:45:17 +0200 Subject: [PATCH] Drop Node 12 support --- .github/workflows/workflow.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index c921486..84f0b43 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -17,7 +17,7 @@ jobs: node: [16] include: - os: ubuntu-latest - node: 12.20.0 + node: 14.18.0 fail-fast: false runs-on: ${{ matrix.os }} # We do not use @actions/cache because restoring/saving cache currently @@ -35,7 +35,7 @@ jobs: # installation - name: Install latest npm run: npm install -g npm - if: "${{ matrix.node == '12.20.0' }}" + if: "${{ matrix.node == '14.18.0' }}" - name: Install dependencies run: npm ci - name: Linting diff --git a/package.json b/package.json index 0c9263c..64b1302 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,6 @@ "@ehmicky/dev-tasks": "^1.0.70" }, "engines": { - "node": ">=12.20.0" + "node": ">=14.18.0" } }