docs(research): add research-9 — extension & plugin systems (acture-s… #73
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install | |
| run: pnpm install --frozen-lockfile | |
| # Build first: sibling packages depend on `acture` via `workspace:*` | |
| # and consume its types from `dist/`. Typecheck would fail if dist | |
| # is missing, so build must precede typecheck and test. | |
| - name: Build | |
| run: pnpm -r --filter "./packages/*" build | |
| - name: Typecheck | |
| run: pnpm -r --filter "./packages/*" typecheck | |
| - name: Test | |
| run: pnpm -r --filter "./packages/*" test | |
| - name: Pack | |
| run: pnpm --filter acture pack --pack-destination /tmp | |
| - name: Inspect tarball | |
| run: | | |
| ls -la /tmp/acture-*.tgz | |
| tar -tzf /tmp/acture-*.tgz |