Bump actions/checkout from 4.2.2 to 6.0.1 #129
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: "Lint Checks" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| # Basic linter check | |
| lint-check: | |
| name: Lint check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
| with: | |
| node-version: "24" | |
| cache: "npm" | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run formatter check | |
| run: | | |
| ./node_modules/.bin/prettier --check --loglevel silent "src/**/*.ts" || ( \ | |
| echo "Run this command on your local device to fix the error:" && \ | |
| echo "" && \ | |
| echo " make format" && \ | |
| echo "" && exit 1) | |
| - name: Run build check | |
| run: | | |
| npm run build && test -z "$(git status --porcelain)" || ( \ | |
| echo "dist is out of date, run this command on your local device to fix the error:" && \ | |
| echo "" && \ | |
| echo " make build" && \ | |
| echo "" && exit 1) |