fix(react-form): subscribe to full meta object #2786
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: | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'media/**' | |
| - '**/*.md' | |
| 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: 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/[email protected] | |
| with: | |
| main-branch-name: main | |
| - name: Run Checks | |
| run: pnpm run test:pr --parallel=3 | |
| - name: Stop Nx Agents | |
| if: ${{ always() }} | |
| run: npx nx-cloud stop-all-agents | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| directory: packages | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| 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:all | |
| # 2. Rename packages AFTER build is successful | |
| # This changes the package.json names so pkg-pr-new publishes under my scope | |
| - name: Rename packages for publishing | |
| run: | | |
| # Use find to locate all package.json files in packages and examples | |
| # We replace @tanstack/ with @wusabyRush/ | |
| find . -name "package.json" -not -path "*/node_modules/*" -exec sed -i 's/@tanstack\//@wusabyRush\//g' {} + | |
| - name: Publish Previews | |
| run: pnpx pkg-pr-new publish --pnpm --compact './packages/*' --template './examples/*/*' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| provenance: | |
| name: Provenance | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| - name: Check Provenance | |
| uses: danielroe/[email protected] | |
| with: | |
| fail-on-downgrade: true |