Nightly Regression #1193
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: 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 }} |