Add QueryObserver state utility methods to QueryCollectionUtils #1757
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: PR | |
| on: | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| 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/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Get base and head commits for `nx affected` | |
| uses: nrwl/[email protected] | |
| with: | |
| main-branch-name: main | |
| - name: Run Checks | |
| run: pnpm run lint && pnpm run build && pnpm run test | |
| preview: | |
| name: Preview | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Build Packages | |
| run: pnpm run build | |
| - name: Publish Previews | |
| run: pnpx pkg-pr-new publish --pnpm --compact './packages/*' --template './examples/*/*' | |
| - name: Compressed Size Action - DB Package | |
| uses: preactjs/compressed-size-action@v2 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| pattern: "./packages/db/dist/**/*.{js,mjs}" | |
| comment-key: "db-package-size" | |
| build-script: "build:minified" | |
| - name: Compressed Size Action - React DB Package | |
| uses: preactjs/compressed-size-action@v2 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| pattern: "./packages/react-db/dist/**/*.{js,mjs}" | |
| comment-key: "react-db-package-size" | |
| build-script: "build:minified" | |
| build-example: | |
| name: Build Example Site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Build Packages | |
| run: pnpm run build | |
| - name: Build Example Site | |
| run: | | |
| cd examples/react/todo | |
| pnpm build | |
| build-starter: | |
| name: Build Example Site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Build Packages | |
| run: pnpm run build | |
| - name: Build Starter Site | |
| run: | | |
| cd examples/react/projects | |
| pnpm build | |
| check-docs: | |
| name: Check Generated Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Setup Tools | |
| uses: tanstack/config/.github/setup@main | |
| - name: Build Packages | |
| run: pnpm run build | |
| - name: Generate Docs | |
| run: pnpm docs:generate | |
| - name: Check for changes | |
| run: | | |
| if [ -n "$(git status --porcelain)" ]; then | |
| echo "Error: Generated docs are out of sync!" | |
| echo "Please run 'pnpm docs:generate' locally and commit the changes." | |
| echo "" | |
| echo "Files that need to be updated:" | |
| git status --short | |
| exit 1 | |
| fi |