Expose render scale and post-stage toggles in the Graphics settings t… #623
Annotations
2 errors and 1 warning
|
publish
Process completed with exit code 1.
|
|
error: expect(received).toMatch(expected):
packages/jgengine/src/packaging.test.ts#L42
Expected substring or pattern: /for p in core rapier ws sql react convex node shell editor assets github jgengine/
Received: "name: Publish\n\non:\n workflow_dispatch:\n push:\n branches: [main]\n paths:\n - \".github/workflows/publish.yml\"\n - \"packages/*/package.json\"\n - \"packages/*/src/**\"\n\nconcurrency:\n group: publish\n cancel-in-progress: false\n\npermissions:\n contents: read\n id-token: write\n\njobs:\n publish:\n runs-on: ubuntu-latest\n timeout-minutes: 20\n steps:\n - uses: actions/checkout@v4\n - uses: oven-sh/setup-bun@v2\n with:\n bun-version: 1.3.8\n - uses: actions/setup-node@v4\n with:\n node-version: \"24\"\n registry-url: \"https://registry.npmjs.org\"\n - run: npm install -g npm@latest\n - uses: actions/cache@v4\n with:\n path: ~/.bun/install/cache\n key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}\n restore-keys: bun-${{ runner.os }}-\n - run: bun install --frozen-lockfile\n - name: Stage the lockstep changelog into each package\n run: for p in core rapier ws sql navbake react convex node shell editor assets github jgengine; do cp CHANGELOG.md \"packages/$p/CHANGELOG.md\"; done\n - name: Stage per-package skills\n run: bun run stage-skills\n - run: bun run check-artifacts\n - run: bun run check-release-set\n - run: bun run build\n - run: bun run check-types:sdk\n - run: bun test packages\n - name: Publish unpublished packages in dependency order\n env:\n NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n run: |\n for p in core rapier ws sql navbake react convex node shell editor assets github jgengine; do\n name=$(node -p \"require('./packages/$p/package.json').name\")\n version=$(node -p \"require('./packages/$p/package.json').version\")\n case \"$version\" in\n *-*) tag=next ;;\n *) tag=latest ;;\n esac\n if npm view \"$name@$version\" version >/dev/null 2>&1; then\n echo \"skip $name@$version (already on npm)\"\n else\n echo \"publish $name@$version --tag $tag\"\n (cd \"packages/$p\" && npm publish --access public --tag \"$tag\")\n fi\n done\n"
at <anonymous> (/home/runner/work/jgengine/jgengine/packages/jgengine/src/packaging.test.ts:42:22)
|
|
publish
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/setup-node@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|