Skip to content

Commit c532ac1

Browse files
authored
Add Check for Node 16 (#730)
1 parent af5b64c commit c532ac1

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ on: pull_request
33

44
jobs:
55
lint:
6-
runs-on: ubuntu-18.04
6+
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node-version: [14]
9+
node-version: [14, 16]
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v1
@@ -24,10 +24,10 @@ jobs:
2424
- name: ESLint Checks
2525
run: yarn lint
2626
flow:
27-
runs-on: ubuntu-18.04
27+
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
node-version: [14]
30+
node-version: [14, 16]
3131
steps:
3232
- uses: actions/checkout@v2
3333
- uses: actions/setup-node@v1
@@ -45,10 +45,10 @@ jobs:
4545
- name: Flow Checks
4646
run: yarn flow check
4747
tsc:
48-
runs-on: ubuntu-18.04
48+
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
node-version: [14]
51+
node-version: [14, 16]
5252
steps:
5353
- uses: actions/checkout@v2
5454
- uses: actions/setup-node@v1
@@ -66,11 +66,11 @@ jobs:
6666
- name: TypeScript type check
6767
run: yarn tsc
6868
android:
69-
runs-on: ubuntu-18.04
69+
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
72-
node-version: [14]
73-
java-version: [11]
72+
node-version: [14, 16]
73+
java-version: [11]
7474
steps:
7575
- uses: actions/checkout@v2
7676
- uses: actions/setup-node@v1
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: macos-latest
100100
strategy:
101101
matrix:
102-
node-version: [14]
102+
node-version: [14, 16]
103103
steps:
104104
- uses: actions/checkout@v2
105105
- uses: actions/setup-node@v1
@@ -117,8 +117,8 @@ jobs:
117117
- name: Install Example
118118
run: cd example && yarn
119119
- name: Build ios
120-
run: cd example && yarn build:ios
120+
run: cd example && yarn build:ios
121121
- name: Pod install
122122
run: cd example && pod install --project-directory=ios
123123
- name: Run ios app
124-
run: cd example && yarn ios
124+
run: cd example && yarn ios

0 commit comments

Comments
 (0)