From 3049111b697db0b404c0c41a2006b69738c2a263 Mon Sep 17 00:00:00 2001 From: ManDeep Singh Date: Mon, 10 Jun 2024 02:49:45 +0530 Subject: [PATCH] Update node.js.yml --- .github/workflows/node.js.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 472b9ae..ba3b212 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -26,6 +26,10 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' + - name: create env file + run: | + touch .env + echo NEXT_PUBLIC_CONVEX_URL=${{ secrets.NEXT_PUBLIC_CONVEX_URL }} >> .env - run: npm ci - run: npm run build --if-present - run: npm test --if-present