Skip to content

docs(pi-cursor-agent): Remove git installation method #15

docs(pi-cursor-agent): Remove git installation method

docs(pi-cursor-agent): Remove git installation method #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
paths: ${{ steps.prepare.outputs.paths }}
steps:
- uses: actions/checkout@v6
- id: prepare
shell: bash
run: |
paths="$(find . -mindepth 1 -maxdepth 1 -type d -name 'pi-*' -printf '%f\n' | jq -Rnc '[inputs]')"
echo "paths=$paths" >> "$GITHUB_OUTPUT"
check:
needs: prepare
runs-on: ubuntu-latest
strategy:
matrix:
path: ${{ fromJson(needs.prepare.outputs.paths) }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: 24
cache: npm
cache-dependency-path: ${{ matrix.path }}/package-lock.json
- run: npm ci
working-directory: ${{ matrix.path }}
- run: npm run typecheck
working-directory: ${{ matrix.path }}