Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Limit CI to 56 concurrent jobs
Browse files Browse the repository at this point in the history
Currently, a single run of this repository's CI pipeline will exhaust
all 60 available concurrent GitHub Actions runners for our GitHub Team
subscription. This makes it difficult to run CI for other repositories.
  • Loading branch information
ramosbugs committed Sep 22, 2023
1 parent 285b34e commit 48613d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ jobs:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || needs.check.outputs.affects_cypress == 'true'
strategy:
fail-fast: false
max-parallel: 16
matrix:
node:
- 16
Expand Down Expand Up @@ -218,6 +219,7 @@ jobs:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || needs.check.outputs.affects_cypress == 'true'
strategy:
fail-fast: false
max-parallel: 16
matrix:
node:
- 16
Expand Down Expand Up @@ -326,6 +328,7 @@ jobs:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || needs.check.outputs.affects_jest == 'true'
strategy:
fail-fast: false
max-parallel: 12
matrix:
node:
- 16
Expand Down Expand Up @@ -443,6 +446,7 @@ jobs:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || needs.check.outputs.affects_jest == 'true'
strategy:
fail-fast: false
max-parallel: 12
matrix:
node:
- 16
Expand Down

0 comments on commit 48613d1

Please sign in to comment.