Skip to content

Commit

Permalink
chore!: Drop Node.js 12 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: As Node.js 12 is going out of maintenance support,
it is dropped from the CI tests. The library should continue to
work with it, but that is no longer guaranteed.
  • Loading branch information
eemeli committed Apr 3, 2022
1 parent 4e2a042 commit 73e9ff2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -36,7 +36,6 @@ jobs:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
with: { node-version: 16.x }
- run: npm ci
- run: npm run lint
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 12"
"node": ">= 14"
}
}

0 comments on commit 73e9ff2

Please sign in to comment.