diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index afe9657a7..c03ffac91 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -40,6 +40,7 @@ jobs: key: ${{ runner.os }}-turbo-build-${{ github.sha }} - name: Integration Test run: yarn test:integration --cache-dir=".turbo" --filter=./packages/${{ inputs.package }} + timeout-minutes: 1 - name: Collect and upload the coverage report uses: codecov/codecov-action@v3 with: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 558db2368..b8d250e11 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -40,6 +40,7 @@ jobs: key: ${{ runner.os }}-turbo-build-${{ github.sha }} - name: Unit Test run: yarn test:unit --cache-dir=".turbo" --filter=./packages/${{ inputs.package }} + timeout-minutes: 1 - name: Collect and upload the coverage report uses: codecov/codecov-action@v3 with: