Merge pull request #6 from suissa/develop #8
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 Tests | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20" # Especificar a versão do Node.js | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Cypress Tests | |
run: npx cypress run --record --key 67fd9c51-6b49-446d-b8b8-d24b5d798313 | |