Feat/jr/concept form #1644
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
name: Deploy to staging | |
on: | |
pull_request: | |
types: [ready_for_review, opened, reopened, synchronize] | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test and build | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
changed: ${{ steps.set-matrix.outputs.changed }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v4 | |
- run: yarn install --frozen-lockfile | |
- name: Caching Nx | |
uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache | |
key: cache-nx-${{ hashFiles('yarn.lock') }} | |
- id: set-matrix | |
run: | | |
echo "matrix={\"appname\":$(yarn --silent run matrix)}" >> $GITHUB_OUTPUT | |
echo "changed=$(yarn --silent run matrix)" >> $GITHUB_OUTPUT | |
- run: yarn playwright install | |
- run: yarn run affected:lint | |
- run: yarn run affected:test --configuration=ci | |
- run: yarn run affected:e2e --configuration=ci --parallel=1 --verbose | |
env: | |
E2E_AUTH_ADMIN_ID: ${{ secrets.E2E_AUTH_ADMIN_ID }} | |
E2E_AUTH_READ_ID: ${{ secrets.E2E_AUTH_READ_ID }} | |
E2E_AUTH_WRITE_ID: ${{ secrets.E2E_AUTH_WRITE_ID }} | |
E2E_CATALOG_ID: ${{ secrets.E2E_CATALOG_ID }} | |
E2E_KEYCLOAK_ID_SERVICE_CATALOG_FRONTEND: ${{ secrets.E2E_KEYCLOAK_ID_SERVICE_CATALOG_FRONTEND }} | |
E2E_KEYCLOAK_SECRET_SERVICE_CATALOG_FRONTEND: ${{ secrets.E2E_KEYCLOAK_SECRET_SERVICE_CATALOG_FRONTEND }} | |
E2E_KEYCLOAK_ID_CATALOG_PORTAL_FRONTEND: ${{ secrets.E2E_KEYCLOAK_ID_CATALOG_PORTAL_FRONTEND }} | |
E2E_KEYCLOAK_SECRET_CATALOG_PORTAL_FRONTEND: ${{ secrets.E2E_KEYCLOAK_SECRET_CATALOG_PORTAL_FRONTEND }} | |
E2E_NEXTAUTH_SECRET: ${{ secrets.E2E_NEXTAUTH_SECRET }} | |
- name: Merge CTRF reports | |
run: npx ctrf merge reports | |
if: ${{ hashFiles('reports/') != '' }} | |
- name: Run CTRF annotations | |
run: npx github-actions-ctrf reports/ctrf-report.json | |
if: ${{ hashFiles('reports/') != '' }} | |
- run: yarn run affected:build --configuration=ci | |
- name: Caching Dist Folder | |
uses: actions/cache@v4 | |
with: | |
path: ./dist | |
key: cache-dist-${{ github.sha }} | |
build: | |
name: Build affected apps when pull request is created | |
needs: [test] | |
if: ${{ needs.test.outputs.changed != '[]' }} | |
strategy: | |
matrix: ${{fromJSON(needs.test.outputs.matrix)}} | |
uses: Informasjonsforvaltning/workflows/.github/workflows/build-push.yaml@main | |
with: | |
app_name: ${{ matrix.appname }}-frontend | |
monorepo_app: true | |
environment: staging | |
build_env: true | |
build_env_name: BINARY | |
build_env_value: ${{ matrix.appname }}-frontend | |
cache_path: ./dist | |
cache_key: cache-dist-${{ github.sha }} | |
dockerfile: apps/${{ matrix.appname }}/Dockerfile | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
deploy: | |
name: Deploy affected apps to staging environment with reusable workflow | |
needs: [test, build] | |
if: ${{ github.actor != 'dependabot[bot]' && needs.test.outputs.changed != '[]' }} | |
strategy: | |
matrix: ${{fromJSON(needs.test.outputs.matrix)}} | |
fail-fast: false | |
uses: Informasjonsforvaltning/workflows/.github/workflows/kustomize-deploy.yaml@main | |
with: | |
app_name: ${{ matrix.appname }}-frontend | |
environment: staging | |
monorepo_app: true | |
cluster: digdir-fdk-dev | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DIGDIR_FDK_AUTODEPLOY: ${{ secrets.DIGDIR_FDK_DEV_AUTODEPLOY }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |