Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
# dist must exist before lint/docs: converted packages' exports point
# at dist/, and the root example.js imports them by package name
run: pnpm -r build
- name: Lint
run: pnpm lint
- name: Typecheck
Expand All @@ -36,7 +40,5 @@ jobs:
run: git checkout -- packages/last-modified/README.md
- name: Docs diff gate
run: git diff --exit-code
- name: Build
run: pnpm -r build
- name: Tarball gate
run: node scripts/tarball-gate.mjs
Loading