CI: run integration tests in parallel to unit tests 💚

This commit is contained in:
Jannis R 2023-04-04 11:39:07 +02:00
parent 14c9805ad8
commit ab3f3636ff
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5

View file

@ -31,7 +31,6 @@ jobs:
- run: npm run test-unit
integration-tests:
needs: unit-tests
runs-on: ubuntu-latest
strategy:
matrix:
@ -56,7 +55,9 @@ jobs:
- run: npm run test-integration
e2e-tests:
needs: integration-tests
needs: |
unit-tests
integration-tests
runs-on: ubuntu-latest
strategy:
matrix: