File tree Expand file tree Collapse file tree 1 file changed +14
-16
lines changed
Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -4,28 +4,26 @@ on: [push]
44
55jobs :
66 build :
7-
87 runs-on : ubuntu-latest
98
109 strategy :
1110 matrix :
1211 node-version :
13- - 8.x
1412 - 10.x
1513 - 12.x
1614
1715 steps :
18- - uses : actions/checkout@v1
19- - name : Use Node.js ${{ matrix.node-version }}
20- uses : actions/setup-node@v1
21- with :
22- node-version : ${{ matrix.node-version }}
23- - name : Install
24- run : |
25- yarn install \
26- --non-interactive \
27- --frozen-lockfile
28- - name : Test
29- run : yarn test
30- env :
31- CI : true
16+ - uses : actions/checkout@v1
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v1
19+ with :
20+ node-version : ${{ matrix.node-version }}
21+ - name : Install
22+ run : |
23+ yarn install \
24+ --non-interactive \
25+ --frozen-lockfile
26+ - name : Test
27+ run : yarn test
28+ env :
29+ CI : true
You can’t perform that action at this time.
0 commit comments