Skip to content

Fix URLPath parsing other origins #212

Fix URLPath parsing other origins

Fix URLPath parsing other origins #212

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn typecheck
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn lint
fmt:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn fmt --check
test:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Latest released and oldest supported.
node: [21, 20]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
- run: yarn test
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn docs-ci