ci: plugin-doctor 0.1.4 — 条件启用 pnpm(npm 仓修复) #2
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: plugin-doctor | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| doctor: | |
| name: dsh-plugin-doctor (static R/K) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| if: hashFiles('pnpm-lock.yaml') != '' | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install | |
| run: | | |
| if [ -f pnpm-lock.yaml ]; then pnpm install --frozen-lockfile | |
| elif [ -f package-lock.json ]; then npm ci | |
| else npm install --no-audit --no-fund | |
| fi | |
| - name: Build (if present) | |
| run: npm run build --if-present || true | |
| - name: Run dsh-plugin-doctor | |
| run: 'npx --yes @perrylink/dsh-plugin-doctor@0.1.4 --repo . --no-smoke --only "闈欐€伮峰寘缁撴瀯,闈欐€伮穋ordis 濂戠害鎵弿"' |