cypress:run on Push/PR

This commit is contained in:
Joshua 2023-03-18 11:03:56 +01:00
parent d02b5c6b29
commit 097014dccd

12
.github/assets/workflows/cypress.yml vendored Normal file
View file

@ -0,0 +1,12 @@
name: Cypress
on: [push, pull_request, workflow_call]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm i
- name: Test
run: npm run cypress:run