Skip to content

Commit

Permalink
add yml file to run casees on github action
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjay committed Feb 9, 2024
1 parent a04a07f commit 922030c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/apiRunner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Cypress Tests

on:
push:
branches:
- main

jobs:
cypress-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: npm install

- name: Run Cypress tests
run: npx cypress run --headless --browser chrome

0 comments on commit 922030c

Please sign in to comment.