Skip to content

Nightly Regression #981

Nightly Regression

Nightly Regression #981

Workflow file for this run

name: Nightly Regression
on:
schedule:
- cron: '15 8 * * *'
jobs:
testRegression:
runs-on: ubuntu-22.04
environment:
name: Staging-e2e
strategy:
fail-fast: false
matrix:
app: [tenant-management-webapp, status-app, subscriber-app, form-app]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: E2E Test
env:
NODE_OPTIONS: '--max_old_space_size=4096'
uses: ./.github/actions/nx-cypress-e2e
with:
app: ${{ matrix.app }}
environment: staging
tags: '@regression and not @ignore'
core-api-client-secret: ${{ secrets.CY_CORE_API_CLIENT_SECRET }}
core-api-user-password: ${{ secrets.CY_CORE_API_USER_PASSWORD }}
api-client-secret: ${{ secrets.CY_CLIENT_SECRET }}
cy-password: ${{ secrets.CY_PASSWORD }}
cy-password-2: ${{ secrets.CY_PASSWORD2 }}
cy-password-3: ${{ secrets.CY_PASSWORD3 }}