Skip to content

Commit 1d23a42

Browse files
authored
CI: use NodeJS 16 everywhere (#9931)
1 parent 179dd0b commit 1d23a42

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/tagged-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Node.js
2222
uses: actions/setup-node@v2
2323
with:
24-
node-version: 14.x
24+
node-version: 16.x
2525

2626
- name: Set up npm cache
2727
uses: actions/cache@v2
@@ -31,10 +31,10 @@ jobs:
3131
restore-keys: |
3232
${{ runner.OS }}-${{ hashFiles('package-lock.json') }}
3333
${{ runner.OS }}
34-
34+
3535
- name: Install npm dependencies
3636
run: npm ci
37-
37+
3838
- name: Build the extension
3939
run: npm run release
4040

.github/workflows/test-browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Node.js setup
7474
uses: actions/setup-node@v2
7575
with:
76-
node-version: ${{ matrix.node }}
76+
node-version: 16.x
7777
cache: npm
7878
- name: Track Node and NPM version
7979
run: node --version && npm --version

.github/workflows/test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Node.js
3232
uses: actions/setup-node@v2
3333
with:
34-
node-version: 15.x
34+
node-version: 16.x
3535

3636
- name: Verify NPM version
3737
run: npm --version

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Node.js
2424
uses: actions/setup-node@v2
2525
with:
26-
node-version: 15.x
26+
node-version: 16.x
2727

2828
- name: Verify NPM version
2929
run: npm --version
@@ -36,7 +36,7 @@ jobs:
3636
restore-keys: |
3737
${{ runner.OS }}-${{ hashFiles('package-lock.json') }}
3838
${{ runner.OS }}
39-
39+
4040
- name: Install npm dependencies
4141
run: npm ci
4242

0 commit comments

Comments
 (0)