-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/sia-validation-bug
- Loading branch information
Showing
35 changed files
with
804 additions
and
775 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
on: | ||
workflow_run: | ||
workflows: | ||
- '**' | ||
types: | ||
- completed | ||
pull_request: | ||
types: | ||
- opened | ||
- closed | ||
- synchronize | ||
- labeled | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
actions: read | ||
checks: read | ||
contents: read | ||
pull-requests: read | ||
|
||
jobs: | ||
send: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: int128/datadog-actions-metrics@v1 | ||
with: | ||
collect-job-metrics: true | ||
collect-step-metrics: true | ||
datadog-api-key: ${{ secrets.DD_API_KEY }} | ||
datadog-site: datadoghq.eu | ||
send-pull-request-labels: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,11 @@ env: | |
COMPOSE_HTTP_TIMEOUT: 180 | ||
SKIP_GENERATED_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-generated-cache') }} | ||
NX_AFFECTED_ALL: ${{ contains(github.event.pull_request.labels.*.name, 'nx-affected-all') }} | ||
CHUNK_SIZE: ${{ vars.CHUNK_SIZE || 8 }} | ||
DISABLE_CHUNKS: ${{ vars.DISABLE_CHUNKS || true }} | ||
MAX_JOBS: ${{ vars.MAX_JOBS || 10 }} | ||
NX_PARALLEL: ${{ vars.NX_PARALLEL || 15 }} | ||
NX_MAX_PARALLEL: ${{ vars.NX_MAX_PARALLEL || 15 }} | ||
|
||
jobs: | ||
prepare: | ||
|
@@ -27,7 +32,6 @@ jobs: | |
|
||
env: | ||
AFFECTED_ALL: ${{ secrets.AFFECTED_ALL }} | ||
CHUNK_SIZE: 7 | ||
SERVERSIDE_FEATURES_ON: '' | ||
DOCKER_REGISTRY: 821090935708.dkr.ecr.eu-west-1.amazonaws.com/ | ||
DOCKER_BASE_IMAGE_REGISTRY: 821090935708.dkr.ecr.eu-west-1.amazonaws.com/ecr-public | ||
|
@@ -68,11 +72,15 @@ jobs: | |
- name: Checking out relevant branches | ||
run: | | ||
set -euo pipefail | ||
echo "CHUNK_SIZE: $CHUNK_SIZE" | ||
echo "MAX_JOBS: $MAX_JOBS" | ||
echo "NX_PARALLEL: $NX_PARALLEL" | ||
set -x | ||
git checkout -m "$GITHUB_HEAD_REF" | ||
git checkout -m "$GITHUB_BASE_REF" | ||
git checkout -m "$GITHUB_SHA" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI Bot" | ||
|
@@ -141,15 +149,23 @@ jobs: | |
- name: Prepare lint targets | ||
id: lint_projects | ||
env: | ||
DISABLE_CHUNKS: 'true' | ||
DISABLE_PROBLEMATIC: 'true' | ||
DISABLE_GROUPING: 'true' | ||
run: | | ||
set -euo pipefail | ||
echo "DISABLE_CHUNKS: $DISABLE_CHUNKS" | ||
CHUNKS="$(./scripts/ci/generate-chunks.sh lint)" | ||
if [[ "$CHUNKS" != "[]" ]]; then | ||
echo "CHUNKS={\"projects\":$CHUNKS}" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Prepare test targets | ||
id: test_projects | ||
env: | ||
DISABLE_CHUNKS: 'true' | ||
DISABLE_GROUPING: 'true' | ||
run: | | ||
set -euo pipefail | ||
CHUNKS="$(./scripts/ci/generate-chunks.sh test)" | ||
|
@@ -172,7 +188,8 @@ jobs: | |
- name: Prepare build targets | ||
id: build_projects | ||
env: | ||
CHUNK_SIZE: 4 | ||
DISABLE_CHUNKS: 'true' | ||
DISABLE_GROUPING: 'true' | ||
run: | | ||
set -euo pipefail | ||
CHUNKS="$(./scripts/ci/generate-chunks.sh build)" | ||
|
@@ -197,7 +214,6 @@ jobs: | |
timeout-minutes: 45 | ||
env: | ||
AFFECTED_PROJECTS: ${{ matrix.projects }} | ||
MAX_JOBS: 1 | ||
strategy: | ||
fail-fast: false | ||
matrix: ${{ fromJson(needs.prepare.outputs.TEST_CHUNKS) }} | ||
|
@@ -361,7 +377,6 @@ jobs: | |
env: | ||
AFFECTED_PROJECTS: ${{ matrix.projects }} | ||
NODE_OPTIONS: --max-old-space-size=4096 | ||
MAX_JOBS: 3 | ||
strategy: | ||
fail-fast: false | ||
matrix: ${{ fromJson(needs.prepare.outputs.LINT_CHUNKS) }} | ||
|
@@ -391,7 +406,6 @@ jobs: | |
timeout-minutes: 35 | ||
env: | ||
AFFECTED_PROJECTS: ${{ matrix.projects }} | ||
MAX_JOBS: 2 | ||
strategy: | ||
fail-fast: false | ||
matrix: ${{ fromJson(needs.prepare.outputs.BUILD_CHUNKS) }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 0 additions & 81 deletions
81
libs/application/templates/financial-aid/src/fields/BankInfoForm/BankInfoForm.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.