Run install #3
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: Verify linter | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure NodeJS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25.x | |
| check-latest: false | |
| - name: Configure pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install | |
| run: pnpm install | |
| - name: Lint | |
| run: pnpm run lint |