Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.
Open
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: 6 additions & 1 deletion .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}

steps:
- uses: actions/checkout@v4
Expand All @@ -25,9 +27,12 @@ jobs:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
- name: Print INKEEP_API_KEY length
run: |
echo "INKEEP_API_KEY Length: ${#INKEEP_API_KEY}"
- run: pnpm run build
env:
API_KEY: ${{ secrets.INKEEP_API_KEY }}
INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
- run: pnpm run lint

fix:
Expand Down
7 changes: 6 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@
*/

import { themes as prismThemes } from "prism-react-renderer"
import { EnumChangefreq } from "sitemap"
import type { EnumChangefreq } from "sitemap"

import type * as Preset from "@docusaurus/preset-classic"
import type { Config } from "@docusaurus/types"

console.log(
"THE API KEY LENGTH in the docusaurus config is:",
process.env.INKEEP_API_KEY?.length,
)

const baseUrl = "/"

const config: Config = {
Expand Down