File tree 1 file changed +19
-15
lines changed
1 file changed +19
-15
lines changed Original file line number Diff line number Diff line change @@ -2,24 +2,28 @@ name: Tests
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches : [master]
6
6
pull_request :
7
- branches : [ master ]
7
+ branches : [master]
8
8
9
9
jobs :
10
10
test :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
14
- - name : Use Node.js ${{ matrix.node-version }}
15
- uses : actions/setup-node@v1
16
- with :
17
- node-version : 14.x
18
- - name : Install dependenices
19
- run : yarn --frozen-lockfile
20
- - name : Run tests
21
- run : yarn test --coverage
22
- - name : Submit coverage
23
- uses : coverallsapp/github-action@master
24
- with :
25
- github-token : ${{ secrets.GITHUB_TOKEN }}
13
+ - uses : actions/checkout@v2
14
+ - name : Use Node.js ${{ matrix.node-version }}
15
+ uses : actions/setup-node@v1
16
+ with :
17
+ node-version : 14.x
18
+ - name : Install dependenices
19
+ run : yarn --frozen-lockfile
20
+ - name : Build libraries
21
+ run : yarn build
22
+ - name : Bootstrap libraries
23
+ run : yarn bootstrap
24
+ - name : Run tests
25
+ run : yarn test --coverage
26
+ - name : Submit coverage
27
+ uses : coverallsapp/github-action@master
28
+ with :
29
+ github-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments