DS-734: Add alumni events to federated search #1410
Workflow file for this run
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: Cypress Integration Tests | |
on: | |
pull_request: | |
types: [opened, ready_for_review, reopened, synchronize] | |
jobs: | |
integration-test: | |
name: Integration Test | |
timeout-minutes: 20 | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Dependencies | |
uses: bahmutov/npm-install@v1 | |
env: | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} | |
- name: Create .env | |
run: touch .env | |
- name: Get Secrets From Vault | |
run: npm run vault:local | |
env: | |
VAULT_ROLE_ID: ${{ secrets.VAULT_ROLE_ID }} | |
VAULT_SECRET_ID: ${{ secrets.VAULT_SECRET_ID }} | |
- name: Cypress Integration Test | |
uses: cypress-io/github-action@v6 | |
with: | |
# we have already installed all dependencies above | |
install: false | |
build: npm run build-test | |
start: npm run serve-test | |
wait-on: 'http://localhost:9000' | |
wait-on-timeout: 240 | |
browser: chrome | |
headed: false | |
config: video=false | |
- name: Integration Test Screenshot Artifacts | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: ./cypress/screenshots | |
- name: Integration Test Video Artifacts | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-videos | |
path: ./cypress/videos | |
- name: NPM Failure Logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: npm-logs | |
path: ~/.npm/_logs |