Run tests: Commit 35cb0213fc1b8b035746861aa1375384af287990 #6
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: CI | |
| run-name: 'Run tests: Commit ${{ github.sha }}' | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited] | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| linux-test-runner: | |
| name: Linux Test Runner | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.19.0 | |
| - name: Install deps | |
| run: npm i | |
| - name: Run tests | |
| run: npm test -- -- --reporter=json --reporter-option output=test-report.json | |
| - uses: actions/upload-artifact@v4 | |
| if: success() || failure() | |
| with: | |
| name: test-results | |
| path: test-report.json |