chore(deps): update node.js to v24.13.0 #888
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: Lint | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| Lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Project | |
| uses: ./.github/actions/setup | |
| - name: Type check | |
| run: pnpm check-types | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Check unused dependencies | |
| run: pnpm lint:knip | |
| - name: Test | |
| run: pnpm test:unit |