Update pnpm to v11.15.1 #1213
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: Vize Lint | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| - "musea/**" | |
| - "config/**" | |
| - "types/**" | |
| - "package.json" | |
| - "pnpm-workspace.yaml" | |
| - "pnpm-lock.yaml" | |
| - "vize.config.ts" | |
| - "vite.config.ts" | |
| - "tsconfig.json" | |
| - "tsconfig.vize.json" | |
| - ".github/workflows/linter.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Setup Vite+ | |
| uses: voidzero-dev/setup-vp@250f29ce396baf5e8f24498e17c0dfdebabc26eb # v1 | |
| with: | |
| node-version: "24" | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| - name: Run lint | |
| run: vp run lint | |
| env: | |
| CI: true |