fix: preclinical mode not working #3234
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: Playwright Tests | |
| on: | |
| pull_request: | |
| branches: [master, release/*] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| playwright-tests: | |
| timeout-minutes: 60 | |
| runs-on: self-hosted | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [20] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.2.23 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Yarn | |
| run: npm install -g [email protected] | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Install Playwright browsers | |
| run: npx playwright install | |
| - name: Run Playwright tests | |
| run: | | |
| export NODE_OPTIONS="--max_old_space_size=10192" | |
| bun run test:e2e:coverage | |
| - name: Create directory of test results | |
| if: ${{ !cancelled() }} | |
| run: | | |
| mkdir -p packaged-test-results | |
| cp -r ./tests/test-results packaged-test-results/ || true | |
| cp ./tests/playwright-report.json packaged-test-results/ || true | |
| - name: Upload directory of test results artifact | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-results | |
| path: packaged-test-results/ | |
| retention-days: 5 | |
| - name: create the coverage report | |
| run: | | |
| bun nyc report --reporter=lcov --reporter=text | |
| - name: Upload the coverage report to GitHub Actions Artifacts | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-report-pr | |
| path: coverage | |
| retention-days: 3 |