File tree 1 file changed +12
-13
lines changed
1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ name: Test
4
4
5
5
on :
6
6
push :
7
- branches : [ master ]
7
+ branches : [master]
8
8
pull_request :
9
- branches : [ master ]
9
+ branches : [master]
10
10
11
11
jobs :
12
12
build :
@@ -18,14 +18,13 @@ jobs:
18
18
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19
19
20
20
steps :
21
- - uses : actions/checkout@v2
22
- - name : Use Node.js ${{ matrix.node-version }}
23
- uses : actions/setup-node@v2
24
- with :
25
- node-version : ${{ matrix.node-version }}
26
- - run : sudo yarn global add bolt
27
- - run : bolt --frozen-lockfile
28
- - run : bolt lint
29
- - run : bolt test
30
- env :
31
- CI : true
21
+ - uses : actions/checkout@v2
22
+ - name : Use Node.js ${{ matrix.node-version }}
23
+ uses : actions/setup-node@v2
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+ - run : yarn install --frozen-lockfile
27
+ - run : yarn lint
28
+ - run : yarn test
29
+ env :
30
+ CI : true
You can’t perform that action at this time.
0 commit comments