Skip to content

docs(research): add research-9 — extension & plugin systems (acture-s… #73

docs(research): add research-9 — extension & plugin systems (acture-s…

docs(research): add research-9 — extension & plugin systems (acture-s… #73

Workflow file for this run

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