amend tests so suite is array #80
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| testing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build | |
| - name: Run tests | |
| run: npm run test | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run format | |
| run: npm run format | |
| - name: Run docs | |
| run: npm run docs | |
| - name: Run against junit | |
| run: npm run e2e:junit | |
| - name: Run against minitest | |
| run: npm run e2e:minitest | |
| - name: Run against surefire | |
| run: npm run e2e:surefire | |
| - name: Run against glob | |
| run: npm run e2e:glob | |
| - name: Publish Test Results | |
| uses: ctrf-io/github-test-reporter@v1 | |
| with: | |
| report-path: "./ctrf/*.json" | |
| github-report: true | |
| failed-report: true | |
| flaky-report: true | |
| insights-report: true | |
| fail-rate-report: true | |
| flaky-rate-report: true | |
| slowest-report: true | |
| previous-results-report: true | |
| upload-artifact: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| if: always() |