Skip to content

Commit 5257a7c

Browse files
committed
only use node v16
1 parent f4ab8b3 commit 5257a7c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/continuous-deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
with:
1616
ref: ${{ github.event.release.target_commitish }}
1717

18-
- name: Setup Node.js 14
18+
- name: Setup Node.js 16
1919
uses: actions/setup-node@v2
2020
with:
21-
node-version: 14
21+
node-version: 16
2222

2323
- name: Install dependencies
2424
uses: bahmutov/npm-install@v1

.github/workflows/continuous-integration.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,18 @@ on:
1010

1111
jobs:
1212
build:
13-
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
13+
name: Build, lint, and test
1414

15-
runs-on: ${{ matrix.os }}
16-
strategy:
17-
matrix:
18-
node: ['12.x', '14.x', '16.x']
19-
os: [ubuntu-latest, windows-latest, macOS-latest]
15+
runs-on: ubuntu-latest
2016

2117
steps:
2218
- name: Checkout repo
2319
uses: actions/checkout@v2
2420

25-
- name: Use Node ${{ matrix.node }}
21+
- name: Use Node 16
2622
uses: actions/setup-node@v2
2723
with:
28-
node-version: ${{ matrix.node }}
24+
node-version: 16
2925

3026
- name: Install dependencies
3127
uses: bahmutov/npm-install@v1

0 commit comments

Comments
 (0)