π fix ci: pin just 1.55.1 and enable set lists for devtools which() #3
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: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/lint.yml' | |
| - 'src/**' | |
| - 'scripts/**' | |
| - 'package.json' | |
| - 'pnpm-lock.yaml' | |
| - 'tsconfig.json' | |
| - 'vite.config.ts' | |
| - 'uno.config.ts' | |
| - 'justfile' | |
| push: | |
| branches: [main, dev] | |
| jobs: | |
| lint: | |
| name: Typecheck (vue-tsc) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: 'pnpm' | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install just | |
| run: | | |
| curl -sSL https://github.com/casey/just/releases/download/1.55.1/just-1.55.1-x86_64-unknown-linux-musl.tar.gz | tar xz | |
| sudo install just /usr/local/bin | |
| - run: just install | |
| - run: just lint |