Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ jobs:
cache: pnpm
registry-url: https://registry.npmjs.org

- name: Upgrade npm to 11.5.1+ (required for trusted publishing OIDC)
run: npm install -g npm@latest
- name: Install npm 11.14.1 for trusted publishing OIDC
run: |
npm_config_prefix="$RUNNER_TEMP/npm" npm install --global npm@11.14.1
echo "$RUNNER_TEMP/npm/bin" >> "$GITHUB_PATH"
"$RUNNER_TEMP/npm/bin/npm" --version

- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ on:
- cron: "41 10 * * 1"
workflow_dispatch:

permissions:
contents: read
id-token: write
security-events: write
permissions: read-all

jobs:
scorecard:
name: Scorecard
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
id-token: write
security-events: write
steps:
- uses: ossf/scorecard-action@v2.4.3
with:
Expand Down
4 changes: 2 additions & 2 deletions apps/website/e2e/smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ test("docs brand link returns to drawer when it was last open", async ({

// Navigate to /docs via the in-drawer /docs link.
await page
.getByRole("link", { name: /\/docs/i })
.first()
.getByTestId("drawer-shell")
.getByRole("link", { name: "/docs", exact: true })
.click();
await expect(page).toHaveURL(/\/docs/);

Expand Down
Loading