Skip to content

Commit

Permalink
Loosen minimum Node.js to 16 again
Browse files Browse the repository at this point in the history
Since this is a simple library if it works in 16
why force people to upgrade.
I will still be developing at verson 20 but
the test matrix will cover the previous LTS versions
  • Loading branch information
NickColley committed Jun 7, 2024
1 parent 95612b2 commit 89e456d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [18, 20, 22]
node-version: [16, 18, 20, 22]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 9.0.0

- Update axe-core to version 4.9.1 - thanks [@1Copenut](https://github.com/1Copenut) and [@longmatthewh](https://github.com/longmatthewh).
- Update minimum Node.js version to 20 to align with LTS - https://nodejs.org/en/about/previous-releases

# 8.0.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"author": "Nick Colley",
"license": "MIT",
"engines": {
"node": ">= 20.0.0"
"node": ">= 16.0.0"
},
"dependencies": {
"axe-core": "4.9.1",
Expand Down

0 comments on commit 89e456d

Please sign in to comment.