Remove support for end-of-life Node.js version 12.

This commit is contained in:
David Anson 2022-04-30 19:19:42 -07:00
parent 7a5886b976
commit 02afeb5bc0
2 changed files with 2 additions and 6 deletions

View file

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

View file

@ -45,7 +45,7 @@
"upgrade": "npx --yes npm-check-updates --upgrade"
},
"engines": {
"node": ">=12"
"node": ">=14"
},
"dependencies": {
"markdown-it": "12.3.2"