Skip to content

Commit

Permalink
ci: stop testing NodeJS v12, start testing v18 (#298)
Browse files Browse the repository at this point in the history
BREAKING CHANGES: Drop support for NodeJS v10, v12
  • Loading branch information
wolfy1339 committed Jun 27, 2022
1 parent 65ded90 commit 4430ec3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -13,9 +13,9 @@ jobs:
strategy:
matrix:
node_version:
- 12
- 14
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: "Use Node.js ${{ matrix.node_version }}"
Expand Down
3 changes: 3 additions & 0 deletions package-lock.json

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

8 changes: 7 additions & 1 deletion package.json
Expand Up @@ -43,6 +43,9 @@
"ts-jest": "^28.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": ">= 14"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
Expand All @@ -61,7 +64,10 @@
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
"@pika/plugin-build-node",
{
"minNodeVersion": "14"
}
]
]
},
Expand Down

0 comments on commit 4430ec3

Please sign in to comment.