Skip to content

Commit

Permalink
chore: run e2e tasks sequentially to avoid port collisions
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Apr 24, 2024
1 parent cc07f0f commit 6bbb626
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
npx nx-cloud record -- ./gradlew ktfmtCheck
env:
NX_CLOUD_DISTRIBUTED_EXECUTION: false
- run: yarn nx affected --t=lint,test,build,e2e,e2e-ci --configuration=ci --exclude=nx-console --verbose
- run: yarn nx affected --t=lint,test,build --configuration=ci --exclude=nx-console --verbose
- run: yarn nx affected --t=e2e,e2e-ci --configuration=ci --exclude=nx-console --parallel=1 --verbose
main-windows:
name: Main Windows
runs-on: windows-latest
Expand Down Expand Up @@ -79,5 +80,6 @@ jobs:
java-version: 17
cache: gradle
# there's no need to check formatting & linting again on windows
- run: yarn nx affected --t=test,build,e2e,e2e-ci --configuration=ci --exclude=nx-console --verbose
- run: yarn nx affected --t=test,build --configuration=ci --exclude=nx-console --verbose
- run: yarn nx affected --t=e2e,e2e-ci --configuration=ci --exclude=nx-console --parallel=1 --verbose
timeout-minutes: 45

0 comments on commit 6bbb626

Please sign in to comment.