Skip to content

Commit ad272e0

Browse files
authored
use modern nodejs versions (#2086)
1 parent 54af8f0 commit ad272e0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codestyle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Use Node.js
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 12.x
16+
node-version: 16.x
1717

1818
- run: npm ci
1919
- run: npm run code-style

.github/workflows/downstream.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Use Node.js ${{ matrix.node-version }}
1111
uses: actions/setup-node@v1
1212
with:
13-
node-version: 10.x
13+
node-version: 16.x
1414
- run: npm ci
1515
- run: npm test
1616
- run: npm run downstream

.github/workflows/ecma262suite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Use Node.js ${{ matrix.node-version }}
1111
uses: actions/setup-node@v1
1212
with:
13-
node-version: 10.x
13+
node-version: 16.x
1414
- run: npm ci
1515
- run: npm test
1616
- run: npm run test-262

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [8.x, 10.x, 12.x, 14.x]
10+
node-version: [8.x, 10.x, 12.x, 14.x, 16.x]
1111

1212
steps:
1313
- uses: actions/checkout@v2
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: macos-latest
2424
strategy:
2525
matrix:
26-
node-version: [8.x, 10.x, 12.x, 14.x]
26+
node-version: [8.x, 10.x, 12.x, 14.x, 16.x]
2727

2828
steps:
2929
- uses: actions/checkout@v2
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: windows-latest
4040
strategy:
4141
matrix:
42-
node-version: [8.x, 10.x, 12.x, 14.x]
42+
node-version: [8.x, 10.x, 12.x, 14.x, 16.x]
4343

4444
steps:
4545
- run: git config --global core.autocrlf false

0 commit comments

Comments
 (0)