Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/actions/dev-env-setup-backend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@ runs:
shell: bash
run: |
sudo apt-get update
sudo apt-get install -y libreadline-dev uuid-dev
asdf plugin add postgres || true
sudo apt-get install -y \
linux-headers-$(uname -r) \
build-essential bison flex libssl-dev libreadline-dev zlib1g-dev \
libcurl4-openssl-dev uuid-dev icu-devtools libicu-dev
asdf plugin add postgres https://github.com/smashedtoatoms/asdf-postgres.git || true
asdf plugin update postgres
MAKELEVEL=0 POSTGRES_EXTRA_CONFIGURE_OPTIONS='--with-libxml' asdf install postgres ${{ steps.versions.outputs.postgres-version }}
asdf reshim
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-administration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-dashboard-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-reporting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
docker-build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check-backend-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
outputs:
has_changes: ${{ steps.check-backend-changes.outputs.changed }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check-frontend-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
outputs:
has_changes: ${{ steps.check-frontend-changes.outputs.changed }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
jobs:
analyze:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
actions: read
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ env:
jobs:
check-nx-affected:
runs-on: ubuntu-latest
timeout-minutes: 30
outputs:
nx_affected_e2e: ${{ steps.check-nx-affected.outputs.NX_AFFECTED_E2E }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
uses: ./.github/workflows/codeql.yaml
notify:
runs-on: ubuntu-latest
timeout-minutes: 30
if: ${{ always() }}
needs:
[
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/retry-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
retry-on-failure:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: rerun ${{ inputs.run_id }}
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ env:
jobs:
pythontests:
runs-on: ubuntu-latest
timeout-minutes: 30
if: inputs.backend_has_changes == 'true'
steps:
- uses: actions/checkout@v7
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ env:
jobs:
nx-tests:
runs-on: ubuntu-latest
timeout-minutes: 30
if: inputs.frontend_has_changes == 'true'
defaults:
run:
Expand All @@ -50,6 +51,7 @@ jobs:

yarn-audit:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
with:
Expand All @@ -65,6 +67,7 @@ jobs:

prek:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- name: dev env setup frontend
Expand All @@ -82,6 +85,7 @@ jobs:

check-migrations:
runs-on: ubuntu-latest
timeout-minutes: 30
if: inputs.backend_has_changes == 'true'
steps:
- uses: actions/checkout@v7
Expand All @@ -97,6 +101,7 @@ jobs:

check-immutable-migrations:
runs-on: ubuntu-latest
timeout-minutes: 30
if: inputs.backend_has_changes == 'true'
steps:
- uses: actions/checkout@v7
Expand All @@ -114,6 +119,7 @@ jobs:

check-env-data:
runs-on: ubuntu-latest
timeout-minutes: 30
if: inputs.backend_has_changes == 'true'
steps:
- uses: actions/checkout@v7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-nx-project-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ jobs:
happo-skip-not-affected:
if: ${{ !inputs.is_nx_affected && github.ref_name != 'develop' && github.ref_name != 'main' && github.head_ref != 'develop' && github.head_ref != 'main' && github.event_name != 'schedule' }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- name: dev env setup
Expand Down