fix(experimental): handle non-string params for isActive #1239
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'packages/docs/**' | |
| - 'packages/playground/**' | |
| - 'packages/playground-file-based/**' | |
| - 'packages/experiments-playground/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'packages/docs/**' | |
| - 'packages/playground/**' | |
| - 'packages/playground-file-based/**' | |
| - 'packages/experiments-playground/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 'lts/*' | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm run lint | |
| - run: pnpm run -r build | |
| - run: pnpm run -r test:types | |
| - run: pnpm run -r test:unit | |
| - uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| # End-to-end tests (all browsers + HMR) run in the dedicated | |
| # "Playwright Tests" workflow (.github/workflows/playwright.yml). |