Skip to content

fix(cli): preserve percent signs in project roots #13

fix(cli): preserve percent signs in project roots

fix(cli): preserve percent signs in project roots #13

Workflow file for this run

name: Pi extensions
on:
push:
paths:
- "home/.pi/agent/extensions/**"
- "misc/pi-patches/**"
- ".github/workflows/extensions.yml"
pull_request:
paths:
- "home/.pi/agent/extensions/**"
- "misc/pi-patches/**"
- ".github/workflows/extensions.yml"
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
defaults:
run:
working-directory: home/.pi/agent/extensions
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 26.0.0
cache: npm
cache-dependency-path: home/.pi/agent/extensions/package-lock.json
- run: npm ci
- run: npm run compatibility:check
- run: npm run format:check
- run: npm run typecheck
- run: npm run lint
- run: npm test