File tree Expand file tree Collapse file tree 1 file changed +1
-31
lines changed
Expand file tree Collapse file tree 1 file changed +1
-31
lines changed Original file line number Diff line number Diff line change 2323 runs-on : ubuntu-latest
2424 strategy :
2525 matrix :
26- node-version : [10, 12]
26+ node-version : [10, 12, 14 ]
2727 steps :
2828 - uses : actions/checkout@v2
2929 - name : Use Node.js ${{ matrix.node-version }}
3636 run : npm run build
3737 - name : Test
3838 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