Bump typescript-eslint from 8.29.1 to 8.30.1 #451
Workflow file for this run
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-action: | |
name: Build Action | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Project | |
uses: actions/[email protected] | |
- name: Setup pnpm | |
uses: threeal/[email protected] | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Check Formatting | |
run: | | |
pnpm format | |
git diff && git diff-index --quiet --exit-code HEAD | |
- name: Check Lint | |
run: pnpm lint | |
- name: Test Action | |
run: pnpm test | |
- name: Build Action | |
run: | | |
pnpm build | |
git diff && git diff-index --quiet --exit-code HEAD |