ci(deps): bump actions/checkout from 4 to 7 #176
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: Validate | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| name: Check TypeScript Types | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: true | |
| - name: Check types | |
| run: pnpm types | |
| lint-and-format: | |
| runs-on: ubuntu-latest | |
| name: Run Biome Linter and Formatter | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: true | |
| - name: Setup Biome CLI | |
| uses: biomejs/setup-biome@v2 | |
| - name: Run Biome | |
| run: biome ci |