Skip to content

Commit e019b14

Browse files
committed
ci: set node to 16
1 parent 9d5fd33 commit e019b14

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v1
14+
- name: Set node version to 16
15+
uses: actions/setup-node@v2
16+
with:
17+
node-version: 16
1418
- uses: bahmutov/npm-install@v1
1519
- name: Run unit tests
1620
run: yarn test --ci
@@ -19,6 +23,10 @@ jobs:
1923
runs-on: ubuntu-latest
2024
steps:
2125
- uses: actions/checkout@v1
26+
- name: Set node version to 16
27+
uses: actions/setup-node@v2
28+
with:
29+
node-version: 16
2230
- uses: bahmutov/npm-install@v1
2331
- name: Run type declaration tests
2432
run: yarn test-dts
@@ -29,6 +37,10 @@ jobs:
2937
CI_JOB_NUMBER: 1
3038
steps:
3139
- uses: actions/checkout@v1
40+
- name: Set node version to 16
41+
uses: actions/setup-node@v2
42+
with:
43+
node-version: 16
3244
- uses: bahmutov/npm-install@v1
3345

3446
- name: Check build size

0 commit comments

Comments
 (0)