Skip to content

Commit 1541c17

Browse files
committed
add github actions
1 parent 53a8568 commit 1541c17

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
cypress-run:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: '16.x'
13+
- name: Install dependencies
14+
run: yarn
15+
- name: Cypress run
16+
uses: cypress-io/github-action@v4
17+
with:
18+
install: false
19+
component: true

0 commit comments

Comments
 (0)