From 76f8784ba63037707ce303ff679c6295f914a70c Mon Sep 17 00:00:00 2001
From: Aravind Putrevu <aravind.putrevu@gmail.com>
Date: Mon, 14 Apr 2025 21:48:50 +0200
Subject: [PATCH] Update GitHub Actions workflow to use INKEEP_API_KEY
 environment variable consistently

---
 .github/workflows/node.js.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/node.js.yaml b/.github/workflows/node.js.yaml
index 22575dd0..9d23b0ab 100644
--- a/.github/workflows/node.js.yaml
+++ b/.github/workflows/node.js.yaml
@@ -14,6 +14,8 @@ on:
 jobs:
   test:
     runs-on: ubuntu-latest
+    env:
+      INKEEP_API_KEY: ${{ secrets.INKEEP_API_KEY }}
 
     steps:
       - uses: actions/checkout@v4
@@ -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: