File tree 1 file changed +1
-31
lines changed
1 file changed +1
-31
lines changed Original file line number Diff line number Diff line change 23
23
runs-on : ubuntu-latest
24
24
strategy :
25
25
matrix :
26
- node-version : [10, 12]
26
+ node-version : [10, 12, 14 ]
27
27
steps :
28
28
- uses : actions/checkout@v2
29
29
- name : Use Node.js ${{ matrix.node-version }}
36
36
run : npm run build
37
37
- name : Test
38
38
run : npm run test:ci
39
- test-with-node8 :
40
- runs-on : ubuntu-latest
41
- steps :
42
- - uses : actions/checkout@v2
43
- - name : Use Node.js 8
44
- uses : actions/setup-node@v2
45
- with :
46
- node-version : 8
47
- - name : Install Packages
48
- run : |+
49
- npm install
50
- npm install --no-save "eslint@5"
51
- - name : Build
52
- run : npm run build
53
- - name : Test
54
- run : npm run test:ci
55
- test-with-node6 :
56
- runs-on : ubuntu-latest
57
- steps :
58
- - uses : actions/checkout@v2
59
- - name : Use Node.js 6
60
- uses : actions/setup-node@v2
61
- with :
62
- node-version : 6
63
- - name : Install Packages
64
- run : |+
65
- npm install
66
- npm install --no-save "eslint@5" [email protected] [email protected]
67
- - name : Test
68
- run : npm run test:ci
You can’t perform that action at this time.
0 commit comments