Skip to content

Commit

Permalink
Create ci_cypress.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wasilva authored Dec 7, 2023
1 parent 1c8ec0d commit 91a52a0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci_cypress.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Cypress Tests

on:
push:
branches:
- main # ajuste conforme o nome de sua branch principal

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14

- name: Install Dependencies
run: npm install

- name: Install Cypress
run: npm install cypress --save-dev

- name: Run Cypress Tests
run: npm run cypress:run

0 comments on commit 91a52a0

Please sign in to comment.