Dashboard › publish › Distillation
30299e5c-1be1-432c-bcc5-1dea2c62a6d8["lore_tm_v1_jLJoEYSnCjCPvkyfKgssrQl1rifREt4QqwiwOBu3cTY","lore_tm_v1_MpB6KLTSZuVyjtePW5c87ifzk1ghX6LDyuG70afhrE8"]
Date: Sep 10, 2026
ci-ready label; publishing is triggered by a later issue event rather than racing the waiting-for-ci job on the same event..github/workflows/test.yml defines workflow Test, triggered by pushes to main and all pull_request events, with workflow-level permission contents: read and Bash as the default run shell..github/workflows/test.yml job unit-test is named unit tests, runs on ubuntu-latest, and uses pinned actions in order: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803, actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 with node-version: 24, and actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830..github/workflows/test.yml caches node_modules under key ${{ runner.os }}-node_modules-${{ hashFiles('package.json', 'yarn.lock') }}; on a cache miss it runs yarn install --frozen-lockfile, then always runs yarn test.