mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-24 06:42:29 +00:00
cypress:run on Push/PR
This commit is contained in:
parent
d02b5c6b29
commit
097014dccd
1 changed files with 12 additions and 0 deletions
12
.github/assets/workflows/cypress.yml
vendored
Normal file
12
.github/assets/workflows/cypress.yml
vendored
Normal 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
|
Loading…
Reference in a new issue