Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: merge publish into CI workflow so it only runs after tests pass

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+13 -24
+13 -1
.tangled/workflows/ci.yaml
··· 1 1 when: 2 - - event: ['push', 'pull_request'] 2 + - event: ["push", "pull_request"] 3 3 4 4 engine: nixery 5 5 ··· 24 24 - name: test 25 25 command: | 26 26 pnpm test 27 + 28 + - name: publish 29 + environment: 30 + NPM_TOKEN: $NPM_TOKEN 31 + command: | 32 + if [ -z "$NPM_TOKEN" ]; then 33 + echo "No NPM_TOKEN, skipping publish" 34 + exit 0 35 + fi 36 + echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc 37 + pnpm changeset version 38 + pnpm changeset publish
-23
.tangled/workflows/publish.yaml
··· 1 - when: 2 - - event: ['push'] 3 - branch: ['main'] 4 - 5 - engine: nixery 6 - 7 - dependencies: 8 - nixpkgs: 9 - - nodejs_24 10 - - pnpm 11 - 12 - steps: 13 - - name: install 14 - command: | 15 - pnpm install --frozen-lockfile 16 - 17 - - name: version and publish 18 - environment: 19 - NPM_TOKEN: $NPM_TOKEN 20 - command: | 21 - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc 22 - pnpm changeset version 23 - pnpm changeset publish