Skip to content

New state-specific calculator design (#20) #124

New state-specific calculator design (#20)

New state-specific calculator design (#20) #124

Workflow file for this run

name: Cypress Tests
on: [push]
jobs:
cypress-run:
runs-on: cypress # this is our github runner label, nothing to do with cypress cloud
strategy:
fail-fast: false # https://github.com/cypress-io/github-action/issues/48
matrix:
node: [18]
# Note - not yet running in parallel. May want later.
# https://docs.cypress.io/guides/guides/parallelization
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
# Also see warning here https://github.com/cypress-io/github-action#parallel
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cypress run
# Uses the official Cypress GitHub action https://github.com/cypress-io/github-action
uses: cypress-io/github-action@v5
with:
# Starts web server for E2E tests - replace with your own server invocation
# https://docs.cypress.io/guides/continuous-integration/introduction#Boot-your-server
build: yarn
start: yarn serve:widget
wait-on: 'http://localhost:1234'
# Records to Cypress Cloud
# https://docs.cypress.io/guides/cloud/projects#Set-up-a-project-to-record
record: true
env:
# For recording and parallelization to work you must set your CYPRESS_RECORD_KEY
# in GitHub repo → Settings → Secrets → Actions
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# pass GitHub token to detect new build vs re-run build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Incentive API key substituted in at build time
REWIRING_AMERICA_API_KEY: ${{ secrets.REWIRING_AMERICA_API_KEY }}