Skip to content

Commit

Permalink
feat(node-versions): raised the minimum versions within v14 and v16. …
Browse files Browse the repository at this point in the history
…dropped support for node v17

BREAKING CHANGE: node v17 is no longer supported and the minimum has been raised for both v14 and
v16
  • Loading branch information
travi committed Oct 22, 2022
1 parent ef33f8c commit 4a86962
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ jobs:
strategy:
matrix:
node:
- 14.15.0
- 16.0.0
- 16
- 14.17.0
- 16.13.0
- 18.0.0
- 18
- 19
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npm test
verify:
Expand All @@ -47,6 +49,7 @@ jobs:
if: github.event_name == 'push'
needs:
- verify
- verify-matrix
steps:
- uses: octokit/request-action@v2.x
with:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,23 @@
"name": "@form8ion/github-workflows-core",
"description": "core functionality for form8ion plugins that manage github workflows",
"license": "MIT",
"type": "commonjs",
"version": "0.0.0-semantically-released",
"type": "commonjs",
"engines": {
"node": "^14.15 || >=16"
},
"files": [
"example.js",
"lib/"
],
"publishConfig": {
"access": "public"
"node": "^14.17.0 || ^16.13.0 || >=18"
},
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
"repository": "form8ion/github-workflows-core",
"bugs": "https://github.com/form8ion/github-workflows-core/issues",
"homepage": "https://npm.im/@form8ion/github-workflows-core",
"runkitExampleFilename": "./example.js",
"main": "lib/index.js",
"module": "lib/index.mjs",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"sideEffects": false,
"repository": "form8ion/github-workflows-core",
"bugs": "https://github.com/form8ion/github-workflows-core/issues",
"homepage": "https://npm.im/@form8ion/github-workflows-core",
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
"scripts": {
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
"pretest:integration:base": "preview",
Expand Down Expand Up @@ -55,6 +48,13 @@
"lint:peer": "npm ls >/dev/null",
"lint:engines": "ls-engines"
},
"files": [
"example.js",
"lib/"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/register": "7.18.9",
"@cucumber/cucumber": "8.7.0",
Expand Down Expand Up @@ -88,4 +88,4 @@
"rollup-plugin-auto-external": "2.0.0",
"sinon": "14.0.1"
}
}
}

0 comments on commit 4a86962

Please sign in to comment.