Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Update GitHub Actions workflow to use INKEEP_API_KEY environment vari… #279

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 3 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 @@ -27,7 +29,7 @@ jobs:
- run: pnpm install --frozen-lockfile --strict-peer-dependencies
- 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