build(deps): bump babel-plugin-react-compiler from 19.1.0-rc.1-rc-af1b7da-20250421 to 19.1.0-rc.3 #48
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Lint, Type Check & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: bun install --frozen-lockfile | |
| - name: Type check | |
| run: bun run check-types | |
| - name: Test | |
| run: bun run test | |
| test-action: | |
| name: Self-test Action | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./ | |
| id: check | |
| with: | |
| changed-files-only: "false" | |
| post-comment: ${{ github.event_name == 'pull_request' && 'true' || 'false' }} | |
| annotations: ${{ github.event_name == 'pull_request' && 'true' || 'false' }} | |
| working-directory: "__tests__/fixtures" | |
| include-patterns: | | |
| **/*.tsx | |
| **/*.ts | |
| - name: Verify outputs | |
| run: | | |
| echo "failure-count: ${{ steps.check.outputs.failure-count }}" | |
| echo "file-count: ${{ steps.check.outputs.file-count }}" | |
| echo "has-failures: ${{ steps.check.outputs.has-failures }}" |