build(deps-dev): bump @typescript-eslint/utils from 8.19.0 to 8.19.1 #573
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 format and test build | |
'on': | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Run ESLint | |
run: pnpm lint:check | |
- name: Run Prettier | |
run: pnpm prettier:check | |
- name: Run Astro Check | |
run: pnpm astro:check | |
- name: Run Build | |
run: pnpm build |