Skip to content

Commit

Permalink
ci: stop testing against NodeJS v14, v16 (#331)
Browse files Browse the repository at this point in the history
* build(package): set minimal node version in engines field to v18
BREAKING CHANGE: Drop support for NodeJS v14, v16

* ci: stop testing against NodeJS v14, v16

* ci: stop testing against NodeJS v14, v16

* ci: stop testing against NodeJS v14, v16

* ci: stop testing against NodeJS v14, v16

* ci: stop testing against NodeJS v14, v16

---------

Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
wolfy1339 and kfcampbell committed May 31, 2023
1 parent 5175112 commit dc68be2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Expand Up @@ -13,9 +13,8 @@ jobs:
strategy:
matrix:
node_version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -60,7 +60,7 @@
[
"@pika/plugin-build-node",
{
"minNodeVersion": "14"
"minNodeVersion": 18
}
],
[
Expand Down Expand Up @@ -91,6 +91,6 @@
]
},
"engines": {
"node": ">= 14"
"node": ">= 18"
}
}

0 comments on commit dc68be2

Please sign in to comment.