Skip to content

chore(deps): bump the npm_and_yarn group across 3 directories with 5 updates #23

chore(deps): bump the npm_and_yarn group across 3 directories with 5 updates

chore(deps): bump the npm_and_yarn group across 3 directories with 5 updates #23

Triggered via pull request June 4, 2026 18:41
Status Failure
Total duration 7m 8s
Artifacts

ci.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

7 errors and 2 warnings
CI
Process completed with exit code 1.
NotImplementedError: test() inside another test() is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test` in the interim.: node:test#L114
at #checkNotInsideTest (node:test:114:26) at checkNotInsideTest (node:test:119:32) at createTest (node:test:198:21) at test (node:test:144:41) at /home/runner/work/plate/plate/tooling/scripts/auto-release-pr.test.mjs:15:1 at loadAndEvaluateModule (2:1)
NotImplementedError: test() inside another test() is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test` in the interim.: node:test#L114
at #checkNotInsideTest (node:test:114:26) at checkNotInsideTest (node:test:119:32) at createTest (node:test:198:21) at test (node:test:144:41) at /home/runner/work/plate/plate/tooling/scripts/release-notes.test.mjs:19:1
NotImplementedError: test() inside another test() is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test` in the interim.: node:test#L114
at #checkNotInsideTest (node:test:114:26) at checkNotInsideTest (node:test:119:32) at createTest (node:test:198:21) at test (node:test:144:41) at /home/runner/work/plate/plate/tooling/scripts/prepare-release-changesets.test.mjs:31:1
NotImplementedError: test() inside another test() is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test` in the interim.: node:test#L114
at #checkNotInsideTest (node:test:114:26) at checkNotInsideTest (node:test:119:32) at createTest (node:test:198:21) at test (node:test:144:41) at /home/runner/work/plate/plate/tooling/scripts/prepare-local-template-packages.test.mjs:35:1
NotImplementedError: test() inside another test() is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test` in the interim.: node:test#L114
at #checkNotInsideTest (node:test:114:26) at checkNotInsideTest (node:test:119:32) at createTest (node:test:198:21) at test (node:test:144:41) at /home/runner/work/plate/plate/tooling/scripts/sync-version-package-releases.test.mjs:11:1
AssertionError: The input did not match the regular expression /createGithubReleases:\s*false/. Input: tooling/scripts/release-workflow.test.mjs#L19
:'name: ReleaseOrVersionPR\n' + '\n' + 'on:\n' + ' push:\n' + ' branches: [main]\n' + '\n' + 'permissions:\n' + ' contents: write\n' + ' pull-requests: write\n' + '\n' + 'jobs:\n' + ' release:\n' + ' name: Release and changelog\n' + ' runs-on: ubuntu-latest\n' + " if: ${{ github.repository == 'udecode/plate' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '[skip release]') }}\n" + ' outputs:\n' + ' published: ${{ steps.changesets.outputs.published }}\n' + ' publishedPackages: ${{ steps.changesets.outputs.publishedPackages }}\n' + '\n' + ' steps:\n' + Checkout Repo\n' + ' uses: actions/checkout@v4\n' + ' with:\n' + ' fetch-depth: 0\n' + '\n' + Detect auto-release opt-in\n' + ' id: auto_release\n' + ' uses: actions/github-script@v7\n' + ' with:\n' + ' script: |\n' + " const { pathToFileURL } = await import('node:url');\n" + ' const helperUrl = pathToFileURL(\n' + ' `${process.env.GITHUB_WORKSPACE}/tooling/scripts/auto-release-pr.mjs`\n' + ' ).href;\n' + ' const { hasChangesetFile, isAutoReleaseChecked } = await import(helperUrl);\n' + '\n' + ' const owner = context.repo.owner;\n' + ' const repo = context.repo.repo;\n' + ' const pullNumbers = new Set();\n' + '\n' + ' const { data: associatedPullRequests } =\n' + ' await github.rest.repos.listPullRequestsAssociatedWithCommit({\n' + ' owner,\n' + ' repo,\n' + ' commit_sha: context.sha,\n' + ' });\n' + '\n' + ' for (const pullRequest of associatedPullRequests) {\n' + ' pullNumbers.add(pullRequest.number);\n' + ' }\n' + '\n' + " const headCommitMessage = context.payload.head_commit?.message ?? '';\n" + ' for (const match of headCommitMessage.matchAll(/\\(#(\\d+)\\)|#(\\d+)/g)) {\n' + ' const pullNumber = Number(match[1] ?? match[2]);\n' + '\n' + ' if (pullNumber) pullNumbers.add(pullNumber);\n' + ' }\n' + '\n' + ' for (const pullNumber of pullNumbers) {\n' + ' let pullRequest;\n' + '\n' + ' try {\n' + ' const { data } = await github.rest.pulls.get({\n' + ' owner,\n' + ' repo,\n' + ' pull_number: pullNumber,\n' + ' });\n' + '\n' + ' pullRequest = data;\n' + ' } catch (error) {\n' + ' core.warning(`Could not read PR #${pullNumber}: ${error.message}`);\n' + ' continue;\n' + ' }\n' + '\n' + ' if (!pullRequest.merged_at) {\n' + ' core.info(`Skipping PR #${pullRequest.number}; it is not merged.`);\n' + ' continue;\n' + ' }\n' + '\n' + " if (!isAutoReleaseChecked(pullRequest.body ?? '')) {\n" + ' core.info(`Skipping PR #${pullRequest.number}; auto-release is unchecked.`);\n' + ' continue;\n' + ' }\n' + '\n' + ' const files = await github.paginate(github.rest.pulls.listFiles, {\n' + ' owner,\n' + ' repo,\n' + ' pull_number: pullRequest.number,\n' + ' per_page: 100,\n' + ' });\n' + '\n' + ' if (!hasChangesetFile(files)) {\n' + ' core.info(`Skipping PR #${pullRequest.number}; no changeset file found.`);\n' + ' continue;\n' + ' }\n' + '\n' + " core.setOutput('enabled', 'true');\n" + " core.setOutput('source_pr', String(pullRequest.number));\n" + ' core.notice(`Auto-release enabled by PR #${pullRequest.number}.`);\n' + ' return;\n' +
CI
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v4, actions/checkout@v4, actions/setup-node@v4, pnpm/action-setup@v4. Actions will be forced to run with Node.js 24 by default starting June 16th, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
CI: apps/www/src/components/ui/sidebar.tsx#L100
The 'toggleSidebar' function makes the dependencies of useEffect Hook (at line 117) change on every render. To fix this, wrap the definition of 'toggleSidebar' in its own useCallback() Hook