Skip to content

Commit

Permalink
fix(node): downgrade the engine strict version to 14 because is still…
Browse files Browse the repository at this point in the history
… supported by node js in maintenance
  • Loading branch information
uittorio committed May 6, 2022
1 parent 6b4c90b commit 263e870
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ updates:
# the latest version does not have release notes or documentation
# https://github.com/cevek/ttypescript/issues/131
- dependency-name: "@types/node"
# @types/node versions follow node versions. this project currently supports node lts/gallium ~ 16.x.x.
# @types/node versions follow node versions. this project currently supports node lts/gallium and lts/fermium
versions: ['>=17.0.0']
2 changes: 1 addition & 1 deletion .github/workflows/definitely-type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [lts/gallium]
node-version: [lts/gallium, lts/fermium]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/definitelyTyped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [lts/gallium]
node-version: [lts/gallium, lts/fermium]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [lts/gallium]
node-version: [lts/gallium, lts/fermium]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- lts/gallium
node-version: [lts/gallium, lts/fermium]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [lts/gallium]
node-version: [lts/gallium, lts/fermium]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
}
},
"engines": {
"npm": ">=8.x.x",
"node": ">=16.x.x"
"npm": ">=6.x.x",
"node": ">=14.x.x"
}
}

0 comments on commit 263e870

Please sign in to comment.