mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
Stop double-running tests when a PR is opened
This commit is contained in:
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -2,7 +2,6 @@ name: test
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -32,8 +31,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Test Report
|
- name: Test Report
|
||||||
uses: dorny/test-reporter@v1
|
uses: dorny/test-reporter@v1
|
||||||
if: success() || failure() # run this step even if previous step failed
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: Jest Tests # Name of the check run which will be created
|
name: Jest Tests
|
||||||
path: junit*.xml # Path to test results
|
path: junit*.xml
|
||||||
reporter: jest-junit # Format of test results
|
reporter: jest-junit
|
||||||
|
|||||||
Reference in New Issue
Block a user