Skip to content

Commit cbd9bad

Browse files
authoredJan 20, 2022
chore: run test after build (#1130)
Run CI tests and check at the same time
1 parent 75b922d commit cbd9bad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
github_token: ${{ secrets.GITHUB_TOKEN }}
3939

4040
test-node:
41-
needs: check
41+
needs: build
4242
runs-on: ${{ matrix.os }}
4343
strategy:
4444
matrix:
@@ -55,7 +55,7 @@ jobs:
5555
- uses: codecov/codecov-action@v1
5656

5757
test-chrome:
58-
needs: check
58+
needs: build
5959
runs-on: ubuntu-latest
6060
steps:
6161
- uses: actions/checkout@v2
@@ -66,7 +66,7 @@ jobs:
6666
- run: npm run test:browser -- -t browser -t webworker --bail
6767

6868
test-firefox:
69-
needs: check
69+
needs: build
7070
runs-on: ubuntu-latest
7171
steps:
7272
- uses: actions/checkout@v2
@@ -77,7 +77,7 @@ jobs:
7777
- run: npm run test:browser -- -t browser -t webworker --bail -- --browser firefox
7878

7979
test-ts:
80-
needs: check
80+
needs: build
8181
runs-on: ubuntu-latest
8282
steps:
8383
- uses: actions/checkout@v2
@@ -88,7 +88,7 @@ jobs:
8888
- run: npm run test:ts
8989

9090
test-interop:
91-
needs: check
91+
needs: build
9292
runs-on: ubuntu-latest
9393
steps:
9494
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)
Please sign in to comment.