Skip to content

Commit

Permalink
Merge pull request #1 from san1811/gitAction
Browse files Browse the repository at this point in the history
add yml file to run cases on github action
  • Loading branch information
san1811 authored Feb 9, 2024
2 parents a04a07f + 922030c commit 7c3ae23
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 7c3ae23

Please sign in to comment.