Skip to content

Commit

Permalink
chore: Update Node version to 18
Browse files Browse the repository at this point in the history
Minimal version supported, now that Node 16 is end-of-life.
  • Loading branch information
MonkeyDo committed Sep 12, 2023
1 parent c29fa5a commit 9088a37
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@babel/env",
{
"targets": {
"node": "12.0"
"node": "18.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/setup-node@v1
with:
# We could also test on multiple Node versions if needed: https://github.com/actions/setup-node#matrix-testing
node-version: '16'
node-version: '18'
# Enables caching Yarn dependencies (uses https://github.com/actions/cache under the hood)
cache: 'yarn'

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ The command for running the tests, following dependency installation, is the sta

This will also provide style checking and coverage information.

Please note, ES6 features are used within this codebase, and it has only been tested in Node 4.x. It may also work in Node 0.12.x, but not any earlier than that.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
}
],
"engines": {
"node": ">= 12.0"
"node": ">= 18.0"
},
"license": "GPL-2.0+",
"bugs": {
Expand Down

0 comments on commit 9088a37

Please sign in to comment.