-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated pipeline to run on pull request and to report all test results
- Loading branch information
1 parent
a0605f4
commit 7b69b4e
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
name: Example Tests CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -27,6 +31,7 @@ jobs: | |
- name: Run tests in the example directory | ||
run: npm test | ||
working-directory: ./example | ||
continue-on-error: true | ||
|
||
- name: Report test results | ||
uses: dorny/[email protected] | ||
|