Skip to content

Commit

Permalink
ci: stop testing against NodeJS v14, v16 (#157)
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

* Update build.mjs

* build: fix typo
  • Loading branch information
wolfy1339 committed Jun 12, 2023
1 parent f2cc2cc commit 17416db
Show file tree
Hide file tree
Showing 3 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
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -95,6 +95,6 @@
]
},
"engines": {
"node": ">= 14"
"node": ">= 18"
}
}
2 changes: 1 addition & 1 deletion scripts/build.mjs
Expand Up @@ -31,7 +31,7 @@ async function main() {
outdir: "pkg/dist-node",
bundle: true,
platform: "node",
target: "node14",
target: "node18",
format: "cjs",
...sharedOptions,
}),
Expand Down

0 comments on commit 17416db

Please sign in to comment.