Remove unnecessary quotes from yaml

This commit is contained in:
Michal Dorner 2021-02-01 21:20:03 +01:00
parent 30b8c3e01b
commit 60d8992614
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
2 changed files with 11 additions and 11 deletions

View file

@ -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