mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-22 14:12:27 +00:00
12 lines
267 B
YAML
12 lines
267 B
YAML
name: Cypress
|
|
on: [push, pull_request, workflow_call, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Dependencies
|
|
run: npm i
|
|
- name: Test
|
|
run: npm run cypress:run
|