diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1ccfeb01..4e5b2d96d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 10.27.0 - name: Install system dependencies (Linux) run: | diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a1465c36b..b1196cf1b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,8 +23,6 @@ jobs: with: node-version: 22 - uses: pnpm/action-setup@v4 - with: - version: 10 - run: cd docs && pnpm install --frozen-lockfile && pnpm build - uses: actions/upload-pages-artifact@v3 with: diff --git a/.github/workflows/mcp-release.yml b/.github/workflows/mcp-release.yml index 59c24f760..d23700404 100644 --- a/.github/workflows/mcp-release.yml +++ b/.github/workflows/mcp-release.yml @@ -23,8 +23,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 10.27.0 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 08c0c3fbb..f7bae6dc9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,8 +36,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9 - name: Install frontend dependencies run: pnpm install diff --git a/tests/docsReleaseIntegration.test.ts b/tests/docsReleaseIntegration.test.ts index 1f72bd876..6a029a039 100644 --- a/tests/docsReleaseIntegration.test.ts +++ b/tests/docsReleaseIntegration.test.ts @@ -2,7 +2,9 @@ import { readFileSync } from "node:fs"; import { strict as assert } from "node:assert"; import test from "node:test"; import appPackage from "../package.json" with { type: "json" }; -import { createInstallOptions } from "../docs/lib/downloadLinks.ts"; +import downloadLinks from "../docs/lib/downloadLinks.ts"; + +const { createInstallOptions } = downloadLinks; test("docs install links are generated from the app package version", () => { const options = createInstallOptions("en", appPackage.version);