tests: use the same browser instance across tests and better use explicit resource management #5155
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| deno: ["v2.x", "canary"] | |
| os: [macOS-latest, windows-latest, ubuntu-latest] | |
| include: | |
| - os: ubuntu-latest | |
| cache_path: ~/.cache/deno/ | |
| - os: macos-latest | |
| cache_path: ~/Library/Caches/deno/ | |
| - os: windows-latest | |
| cache_path: ~\AppData\Local\deno\ | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: ${{ matrix.deno }} | |
| - name: Verify formatting | |
| if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x' | |
| run: deno fmt --check | |
| - name: Run linter | |
| if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x' | |
| run: deno lint | |
| - name: Spell-check | |
| if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2.x' | |
| uses: crate-ci/typos@master | |
| - name: Type check project | |
| run: deno task check:types | |
| - name: Disable AppArmor | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns | |
| - name: Run tests | |
| run: deno task test | |
| - name: Check docs | |
| run: deno task check:docs |