Created
January 22, 2023 11:24
-
-
Save slawekradzyminski/9167d3d3119eb0a89992714f4cf886ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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/[email protected] | |
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