ci: Update ESLint families (major) - autoclosed #2847
Workflow file for this run
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: Check | |
on: pull_request | |
jobs: | |
check: | |
name: lint and compile | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Run lint | |
run: | | |
pnpm lint | |
pnpm format | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Run test | |
run: pnpm test | |
- name: Run compile | |
run: pnpm build |