File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,22 @@ name: CI
22
33on :
44 push :
5- branches : [ develop, master ]
5+ branches : [develop, master]
66 pull_request :
7- branches : [ develop ]
7+ branches : [develop]
88
99jobs :
1010 build :
11-
1211 runs-on : ubuntu-latest
1312
1413 steps :
15- - uses : actions/checkout@v2
16- - name : Use Node.js ${{ matrix.node-version }}
17- uses : actions/setup-node@v1
18- with :
19- node-version : 12.x
20- - run : yarn install --ignore-engines
21- - run : yarn lint:nofix
22- - run : yarn coveralls
14+ - uses : actions/checkout@v2
15+ - name : Setup Node JS
16+ uses : actions/setup-node@v1
17+ with :
18+ node-version : 12.x
19+ - run : yarn install --ignore-engines
20+ - run : yarn lint:nofix
21+ - run : yarn coveralls
22+ env :
23+ github-token : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments