Skip to content

Commit

Permalink
chore-cicd-ghactions
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarillion committed Jun 3, 2024
1 parent aa821c9 commit 81256e2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Cypress Tests

on:
push:
branches: [master, develop]
pull_request: {}
workflow_dispatch:

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

0 comments on commit 81256e2

Please sign in to comment.