fix(fetch): respect "abort" event on the request signal #545
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.8.0] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7.12 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Unit tests | |
run: pnpm test:unit | |
- name: Build | |
run: pnpm build | |
- name: Node.js tests | |
run: pnpm test:node | |
- name: Install Playwright browsers | |
run: pnpx playwright install --with-deps | |
- name: Browser tests | |
run: pnpm test:browser |