From 02afeb5bc085ebf55fc611eb0a95a93d21200bd9 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 30 Apr 2022 19:19:42 -0700 Subject: [PATCH] Remove support for end-of-life Node.js version 12. --- .github/workflows/ci.yml | 6 +----- package.json | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de16d478..70add37a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] - node-version: [12.x, 14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x] steps: - uses: actions/checkout@v3 @@ -27,8 +27,4 @@ jobs: - name: Install Dependencies run: npm install --no-package-lock - name: Run All Validations - if: ${{ matrix.node-version != '12.x' }} run: npm run ci - - name: Run Tests Only - if: ${{ matrix.node-version == '12.x' }} - run: npm run test diff --git a/package.json b/package.json index 74d53fb8..01009289 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "upgrade": "npx --yes npm-check-updates --upgrade" }, "engines": { - "node": ">=12" + "node": ">=14" }, "dependencies": { "markdown-it": "12.3.2"