Skip to content

Commit

Permalink
feat(github actions): add cypress E2E test
Browse files Browse the repository at this point in the history
  • Loading branch information
mijogu committed Apr 25, 2023
1 parent f72d945 commit d4c925d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cypress_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Cypress E2E Tests

on: push

jobs:
cypress-run:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Cypress
run: npm i cypress@^12.10

- name: Cypress run
uses: cypress-io/github-action@v5
with:
# project: ./web/client/
working-directory: ./web/client
record: true
# build: npm run build
# start: npm start
# browser: chrome
install: false

0 comments on commit d4c925d

Please sign in to comment.