chore(deps): update typescript-eslint monorepo to v8 (major) #447
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: Linter & Typecheck | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
typecheck: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.0 | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: setup-bun | |
name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- id: install-bun | |
name: Bun Install | |
run: | | |
bun install | |
- id: Typecheck | |
name: Checking Typescript Error | |
run: | | |
bun run typecheck | |
linter: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.0 | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: setup-bun | |
name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- id: install-bun | |
name: Bun Install | |
run: | | |
bun install | |
- id: linter | |
name: Linter check | |
run: | | |
bun run lint |