From cbd9bad86dafd438b44572b80c5381644e442a55 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Thu, 20 Jan 2022 14:52:31 +0000 Subject: [PATCH] chore: run test after build (#1130) Run CI tests and check at the same time --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ff4a9917..e391ae67 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} test-node: - needs: check + needs: build runs-on: ${{ matrix.os }} strategy: matrix: @@ -55,7 +55,7 @@ jobs: - uses: codecov/codecov-action@v1 test-chrome: - needs: check + needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -66,7 +66,7 @@ jobs: - run: npm run test:browser -- -t browser -t webworker --bail test-firefox: - needs: check + needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -77,7 +77,7 @@ jobs: - run: npm run test:browser -- -t browser -t webworker --bail -- --browser firefox test-ts: - needs: check + needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -88,7 +88,7 @@ jobs: - run: npm run test:ts test-interop: - needs: check + needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2