Skip to content

Commit 186d2af

Browse files
committedJun 3, 2024·
trying to add ci tests pipeline
1 parent 69e9af0 commit 186d2af

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎.github/workflows/tests_dev.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: End-to-end Tests 🧪
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
cypress-run:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Install dependencies
13+
run: |
14+
pip install -r requirements.txt
15+
npm ci
16+
- name: Cypress run
17+
uses: cypress-io/github-action@v6

0 commit comments

Comments
 (0)
Please sign in to comment.