Configure Renovate #73
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
name: Tests | |
on: | |
pull_request: | |
push: | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: npm ci | |
- run: npm test | |
# Run this action on itself. Even if there is no JUnit reports, the action should run silently without errors. | |
ubuntu-action-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./ | |
with: | |
name: "unbuntu unit tests" | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
path: "**/TEST-*.xml" | |
macos-action-tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./ | |
with: | |
name: "macos unit tests" | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
path: "**/TEST-*.xml" |