From 484346fcb973ccfd69e7a20d9a3bda6eab2472a5 Mon Sep 17 00:00:00 2001 From: Alan Chang Date: Mon, 1 Apr 2024 21:00:53 -0700 Subject: [PATCH] Fix some build errors on setup node pnpm action --- .github/workflows/setup-node-pnpm/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/setup-node-pnpm/action.yml b/.github/workflows/setup-node-pnpm/action.yml index c9375d7..94551c0 100644 --- a/.github/workflows/setup-node-pnpm/action.yml +++ b/.github/workflows/setup-node-pnpm/action.yml @@ -21,6 +21,7 @@ runs: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - name: cache dependencies in pnpm + uses: actions/cache@v4 with: path: ${{ env.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -28,4 +29,5 @@ runs: ${{ runner.os }}-pnpm-store- - name: install dependencies in pnpm + shell: bash run: pnpm install