Skip to content

Bump eslint-plugin-react-compiler from 0.0.0-experimental-51a85ea-20240601 to 0.0.0-experimental-0998c1e-20240625 #378

Bump eslint-plugin-react-compiler from 0.0.0-experimental-51a85ea-20240601 to 0.0.0-experimental-0998c1e-20240625

Bump eslint-plugin-react-compiler from 0.0.0-experimental-51a85ea-20240601 to 0.0.0-experimental-0998c1e-20240625 #378

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
concurrency: ci-${{ github.ref }}
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Check formatting
run: pnpm format:check
- name: Formatting issues detected (attempting fix...)
if: ${{ failure() }}
run: pnpm format
- name: Commit fixed formatting issues
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply fixed formatting issues
branch: ${{ github.head_ref }}
lint:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Lint
run: pnpm lint
- name: Linting issues detected (attempting fix...)
if: ${{ failure() }}
run: pnpm lint:fix
- name: Commit fixed linting issues
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply fixed linting issues
branch: ${{ github.head_ref }}
test:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Test
run: pnpm test
build:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/[email protected]
- name: Build
run: pnpm build