From 657e3105dc82c704b5d44a134431d03f1e2b37d1 Mon Sep 17 00:00:00 2001 From: Rudy Flores <68666202+rudyflores@users.noreply.github.com> Date: Mon, 2 Oct 2023 12:06:47 -0400 Subject: [PATCH] fix for samples github action Signed-off-by: Rudy Flores <68666202+rudyflores@users.noreply.github.com> --- .github/workflows/zowe-explorer-samples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zowe-explorer-samples.yml b/.github/workflows/zowe-explorer-samples.yml index f7245904d9..5def721972 100644 --- a/.github/workflows/zowe-explorer-samples.yml +++ b/.github/workflows/zowe-explorer-samples.yml @@ -41,5 +41,5 @@ jobs: # install pnpm - run: npm install -g pnpm - - run: for dir in samples/*; do pushd $dir && pnpm i && pnpm run compile && popd; done + - run: for dir in samples/*; do pushd $dir && pnpm --ignore-workspace i && pnpm run compile && popd; done shell: bash