mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
Remove unnecessary quotes from yaml
This commit is contained in:
parent
30b8c3e01b
commit
60d8992614
2 changed files with 11 additions and 11 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
|
@ -10,7 +10,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build-test:
|
||||
name: 'Build & Test'
|
||||
name: Build & Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
@ -19,10 +19,10 @@ jobs:
|
|||
- run: npm run format-check
|
||||
- run: npm run lint
|
||||
- run: npm test
|
||||
- name: 'Evaluate test results'
|
||||
if: always()
|
||||
- name: Create test report
|
||||
if: success() || failure()
|
||||
uses: ./
|
||||
with:
|
||||
name: 'JEST Tests'
|
||||
path: '__tests__/__results__/*.xml'
|
||||
reporter: 'jest-junit'
|
||||
name: JEST Tests
|
||||
path: __tests__/__results__/*.xml
|
||||
reporter: jest-junit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue