chore(deps): bump eslint-plugin-react-compiler from 19.0.0-beta-df7b47d-20241124 to 19.0.0-beta-37ed2a7-20241206 #311
This file contains 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: '🔀 Pull Request' | |
on: | |
pull_request: | |
concurrency: | |
group: pull-request-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
pull: | |
name: '👷️ CI' | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: '🐙️ Checkout' | |
uses: actions/checkout@v4 | |
- name: '💽️ Setup' | |
uses: ./.github/actions/setup-node | |
- name: '🔺️ Cache' | |
uses: ./.github/actions/cache-node | |
- name: '📦 Install' | |
shell: bash | |
run: pnpm install --frozen-lockfile | |
- name: '🚨️ Lint' | |
shell: bash | |
run: pnpm lint | |
- name: '🎨 Format' | |
shell: bash | |
run: pnpm format | |
- name: '🦺 Type Check' | |
shell: bash | |
run: pnpm typecheck |