Skip to content

DT-530: Add conditional rendering around apply for access #3230

DT-530: Add conditional rendering around apply for access

DT-530: Add conditional rendering around apply for access #3230

Workflow file for this run

on: [pull_request]
name: cypress component tests
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Log Actor
run: echo "${{ github.actor }}"
- name: Checkout
uses: actions/checkout@v4
- name: NPM Install
run: npm ci
- name : Cypress run component tests
uses: cypress-io/github-action@v6
with:
install: false
component: true
browser: chrome
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-videos
path: cypress/videos
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`