Skip to content

Commit e14506c

Browse files
committed
ci: set minimum node version to 14.21.3
1 parent 2d8e221 commit e14506c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [12, 14, 16]
13+
node-version: [14, 16, 18]
1414
fail-fast: false
1515
steps:
1616
- uses: actions/checkout@v2
@@ -35,18 +35,18 @@ jobs:
3535
uses: mikepenz/action-junit-report@v2
3636
with:
3737
check_name: JUnit Annotations for Node ${{ matrix.node-version }}
38-
report_paths: '**/coverage/junit/**/*.xml'
38+
report_paths: "**/coverage/junit/**/*.xml"
3939

4040
publish:
4141
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta'
4242
needs: [tests]
4343
runs-on: ubuntu-latest
4444
steps:
4545
- uses: actions/checkout@v2
46-
- name: Use Node.js 12
46+
- name: Use Node.js 14
4747
uses: actions/setup-node@v2
4848
with:
49-
node-version: 12
49+
node-version: 14
5050
- name: Install node_modules
5151
run: yarn install
5252
- name: Build
@@ -56,4 +56,3 @@ jobs:
5656
env:
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
59-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0-semantically-released",
44
"description": "Network Layer for React Relay and Express (Batch Queries, AuthToken, Logging, Retry)",
55
"engines": {
6-
"node": ">=10.17.0"
6+
"node": ">=14.21.3"
77
},
88
"files": [
99
"es",

0 commit comments

Comments
 (0)