Skip to content

Commit 263e870

Browse files
committed
fix(node): downgrade the engine strict version to 14 because is still supported by node js in maintenance
1 parent 6b4c90b commit 263e870

File tree

8 files changed

+10
-11
lines changed

8 files changed

+10
-11
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ updates:
1212
# the latest version does not have release notes or documentation
1313
# https://github.com/cevek/ttypescript/issues/131
1414
- dependency-name: "@types/node"
15-
# @types/node versions follow node versions. this project currently supports node lts/gallium ~ 16.x.x.
15+
# @types/node versions follow node versions. this project currently supports node lts/gallium and lts/fermium
1616
versions: ['>=17.0.0']

.github/workflows/definitely-type-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [lts/gallium]
18+
node-version: [lts/gallium, lts/fermium]
1919

2020
steps:
2121
- uses: actions/checkout@v2

.github/workflows/definitelyTyped.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [lts/gallium]
13+
node-version: [lts/gallium, lts/fermium]
1414

1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [lts/gallium]
17+
node-version: [lts/gallium, lts/fermium]
1818

1919
steps:
2020
- uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version:
16-
- lts/gallium
15+
node-version: [lts/gallium, lts/fermium]
1716
steps:
1817
- name: Checkout
1918
uses: actions/checkout@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [lts/gallium]
18+
node-version: [lts/gallium, lts/fermium]
1919

2020
steps:
2121
- uses: actions/checkout@v2

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
}
115115
},
116116
"engines": {
117-
"npm": ">=8.x.x",
118-
"node": ">=16.x.x"
117+
"npm": ">=6.x.x",
118+
"node": ">=14.x.x"
119119
}
120120
}

0 commit comments

Comments
 (0)