chore(deps): update dependency eslint-plugin-prettier to v5.5.5 #474
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: CI | |
| on: pull_request | |
| jobs: | |
| linter: | |
| name: 'lint checks' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/[email protected] | |
| with: | |
| run_install: false | |
| - uses: actions/[email protected] | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'pnpm' | |
| - name: 'Install dependencies' | |
| run: pnpm install --frozen-lockfile | |
| - name: 'Run type checking' | |
| run: pnpm type-check | |
| - name: 'Run linter' | |
| run: pnpm lint | |
| - name: 'Build userscripts' | |
| run: pnpm build |