Merge pull request #230 from vim-jp/dependabot/npm_and_yarn/2025/astr… #360
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 | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint-2025: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./2025 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| package_json_file: ./2025/package.json | |
| run_install: false | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm check | |
| - run: pnpm lint | |
| - run: pnpm prettier:check |