File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ on: pull_request
3
3
4
4
jobs :
5
5
lint :
6
- runs-on : ubuntu-18.04
6
+ runs-on : ubuntu-latest
7
7
strategy :
8
8
matrix :
9
- node-version : [14]
9
+ node-version : [14, 16 ]
10
10
steps :
11
11
- uses : actions/checkout@v2
12
12
- uses : actions/setup-node@v1
@@ -24,10 +24,10 @@ jobs:
24
24
- name : ESLint Checks
25
25
run : yarn lint
26
26
flow :
27
- runs-on : ubuntu-18.04
27
+ runs-on : ubuntu-latest
28
28
strategy :
29
29
matrix :
30
- node-version : [14]
30
+ node-version : [14, 16 ]
31
31
steps :
32
32
- uses : actions/checkout@v2
33
33
- uses : actions/setup-node@v1
@@ -45,10 +45,10 @@ jobs:
45
45
- name : Flow Checks
46
46
run : yarn flow check
47
47
tsc :
48
- runs-on : ubuntu-18.04
48
+ runs-on : ubuntu-latest
49
49
strategy :
50
50
matrix :
51
- node-version : [14]
51
+ node-version : [14, 16 ]
52
52
steps :
53
53
- uses : actions/checkout@v2
54
54
- uses : actions/setup-node@v1
@@ -66,11 +66,11 @@ jobs:
66
66
- name : TypeScript type check
67
67
run : yarn tsc
68
68
android :
69
- runs-on : ubuntu-18.04
69
+ runs-on : ubuntu-latest
70
70
strategy :
71
71
matrix :
72
- node-version : [14]
73
- java-version : [11]
72
+ node-version : [14, 16 ]
73
+ java-version : [11]
74
74
steps :
75
75
- uses : actions/checkout@v2
76
76
- uses : actions/setup-node@v1
99
99
runs-on : macos-latest
100
100
strategy :
101
101
matrix :
102
- node-version : [14]
102
+ node-version : [14, 16 ]
103
103
steps :
104
104
- uses : actions/checkout@v2
105
105
- uses : actions/setup-node@v1
@@ -117,8 +117,8 @@ jobs:
117
117
- name : Install Example
118
118
run : cd example && yarn
119
119
- name : Build ios
120
- run : cd example && yarn build:ios
120
+ run : cd example && yarn build:ios
121
121
- name : Pod install
122
122
run : cd example && pod install --project-directory=ios
123
123
- name : Run ios app
124
- run : cd example && yarn ios
124
+ run : cd example && yarn ios
You can’t perform that action at this time.
0 commit comments