Skip to content

Commit

Permalink
add cypress-test job to CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
osma committed Sep 19, 2023
1 parent 4af39d3 commit 131b61d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,25 @@ jobs:

- name: Publish code coverage to Codecov
uses: codecov/codecov-action@v3

cypress-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Start up containers
run: cd tests; ./init_containers.sh

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x

- name: Install JavaScript dependencies
run: npm install

- name: Run Cypress tests
run: npx cypress run

0 comments on commit 131b61d

Please sign in to comment.