From eed6f862e34a4306b3727251ebef302ecbc57588 Mon Sep 17 00:00:00 2001 From: bartstc Date: Sun, 22 Oct 2023 10:39:29 +0000 Subject: [PATCH] Test CI workflow --- .github/workflows/ci.yml | 4 ++++ src/utils/http/index.ts | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b64ffc..fcbb655 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,10 @@ jobs: # node-version: "16.x" # cache: "pnpm" + - name: Log NODE_ENV + run: | + echo "NODE_ENV: $NODE_ENV" + - name: Get pnpm store directory id: pnpm-cache shell: bash diff --git a/src/utils/http/index.ts b/src/utils/http/index.ts index 170039e..ce0139b 100644 --- a/src/utils/http/index.ts +++ b/src/utils/http/index.ts @@ -6,7 +6,6 @@ const headers = { }; export const host = import.meta.env.VITE_FAKE_STORE_API_HOST; -// export const host = "https://fakestoreapi.com"; export const httpService = new HttpService( new KyClient({ prefixUrl: host, headers })