| name: pr | |
| on: | |
| pull_request: | |
| push: | |
| branches: ['svelte-5-adapter'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Start Nx Agents | |
| run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Get base and head commits for `nx affected` | |
| uses: nrwl/nx-set-shas@v4.1.2 | |
| with: | |
| main-branch-name: main | |
| - name: Run Checks | |
| run: pnpm run test:pr --parallel=3 | |
| - name: Verify Links | |
| run: pnpm run verify-links | |
| - name: Stop Nx Agents | |
| if: ${{ always() }} | |
| run: npx nx-cloud stop-all-agents | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4.6.0 | |
| with: | |
| directory: packages | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| preview: | |
| name: Preview | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Build Packages | |
| run: pnpm run build:all | |
| - name: Publish Previews | |
| run: pnpx pkg-pr-new publish --pnpm --compact './packages/*' --template './examples/*/*' | |
| - name: Determine commit SHA | |
| id: determine-sha | |
| run: | | |
| echo "COMMIT_SHA=${{ github.event.pull_request.head.sha || github.sha }}" >> $GITHUB_ENV | |
| - name: Preview Bundle Size | |
| uses: marocchino/sticky-pull-request-comment@28d58c4b5a5eae3bbe45348c3990dcbc2ffcdc69 | |
| with: | |
| message: | | |
| Sizes for commit ${{ env.COMMIT_SHA }}: | |
| | Branch | Bundle Size | | |
| |--------|--------| | |
| | Main | [](https://bundlejs.com/?q=https://esm.sh/@tanstack/react-query/es2022/react-query.mjs&config=%7B%22esbuild%22:%7B%22external%22:%5B%22react@%5E19.1.0/jsx-runtime?target=es2022%22,%22react@%5E19.1.0?target=es2022%22%5D%7D%7D) | | |
| | This PR | [](https://bundlejs.com/?q=https://esm.sh/pr/@tanstack/react-query@${{ env.COMMIT_SHA }}/es2022/react-query.mjs&config=%7B%22esbuild%22:%7B%22external%22:%5B%22react@%5E19.1.0/jsx-runtime?target=es2022%22,%22react@%5E19.1.0?target=es2022%22%5D%7D%7D) | | |
| continue-on-error: true | |