Chore/jr/bump #358
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 | |
workflow_dispatch: | |
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 | |
- name: Set SHAs | |
uses: nrwl/nx-set-shas@v4 | |
- name: Enable corepack | |
run: corepack enable | |
- name: Use Node.js 20.16.0 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.16.0 | |
cache: 'yarn' | |
- name: Yarn install | |
run: | | |
yarn set version stable | |
yarn install --immutable | |
- 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 | |
- 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 | |
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 }} | |
GCP_SA_DIGDIR_FDK_GCR_KEY: ${{ secrets.GCP_SA_DIGDIR_FDK_GCR_KEY }} | |
deploy: | |
name: Deploy affected apps to staging environment with reusable workflow | |
needs: [test, build] | |
if: ${{ needs.test.outputs.changed != '[]' && github.actor != 'dependabot[bot]'}} | |
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 }} |