a post-component library for building user-interfaces on the web.
1on: [push]
2
3jobs:
4 check:
5 runs-on: ubuntu-latest
6
7 steps:
8 - uses: actions/checkout@v6
9 - uses: pnpm/action-setup@v4
10 - uses: actions/setup-node@v6
11 with:
12 node-version: 24
13 cache: pnpm
14 - run: pnpm install --frozen-lockfile
15 - run: pnpm run build
16 - run: pnpm install --frozen-lockfile # link the built version to dependents
17 - run: pnpm run --recursive check