Skip to content

Saturday Edition & Updated Registration Consents/Newsletter Flow #1690

Saturday Edition & Updated Registration Consents/Newsletter Flow

Saturday Edition & Updated Registration Consents/Newsletter Flow #1690

Workflow file for this run

name: Cypress Tests
permissions:
# required by aws-actions/configure-aws-credentials
id-token: write
contents: read
on:
push:
branches:
- main
pull_request:
types: ['review_requested']
workflow_dispatch:
jobs:
build:
name: Build Gateway
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --immutable
- name: Build project
run: yarn build
- name: 'Zip build'
run: zip -r -q build.zip ./build
- name: 'Upload build'
uses: actions/upload-artifact@v4
with:
name: build
path: build.zip
retention-days: 1
cypress-mocked:
needs: build
uses: ./.github/workflows/cypress-mocked.yml
secrets: inherit
cypress-mocked-okta:
needs: build
uses: ./.github/workflows/cypress-mocked-okta.yml
secrets: inherit
cypress-ete:
needs: build
uses: ./.github/workflows/cypress-ete.yml
secrets: inherit
cypress-ete-okta:
needs: build
uses: ./.github/workflows/cypress-ete-okta.yml
secrets: inherit