Skip to content

Instantly share code, notes, and snippets.

@slawekradzyminski
Created January 22, 2023 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slawekradzyminski/9167d3d3119eb0a89992714f4cf886ee to your computer and use it in GitHub Desktop.
Save slawekradzyminski/9167d3d3119eb0a89992714f4cf886ee to your computer and use it in GitHub Desktop.
name: Cypress tests
on: [push]
jobs:
cypress:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run Cypress tests
uses: cypress-io/github-action@3.8.1
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
CYPRESS_config-file: cypress.json
with:
browser: chrome
record: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment