Skip to content

Commit

Permalink
hook e2e tests on CI (#120)
Browse files Browse the repository at this point in the history
Objective
Same as title.

Abstractions
Add a "Run e2e tests" step on the CI to run the end to end tests we currently have.
It's added after step "Run tests on Windows OS"(npm test) and before CodeQL steps.

Tests performed
  • Loading branch information
Sen-real authored Apr 6, 2021
1 parent 6f7aa75 commit 84a9db9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
run: npm test
if: runner.os != 'Linux'

- name: Run e2e tests
run: npm run e2etest
if: runner.os != 'Linux'

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
Expand Down

0 comments on commit 84a9db9

Please sign in to comment.