Skip to content

Commit d2d0ec0

Browse files
committed
chore: fixed tests
1 parent 9eacf2f commit d2d0ec0

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

.github/workflows/tests.yml

+19-15
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,28 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88

99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
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 }}

0 commit comments

Comments
 (0)