Skip to content

Commit

Permalink
add cypress to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
acvalencia committed Aug 28, 2023
1 parent 3140415 commit 4a539e5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Cypress Tests

on: push

jobs:
cypress-run:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v5
with:
build: npm run build
start: npm start

0 comments on commit 4a539e5

Please sign in to comment.