From 0e9dbeaba437a572662318151ef9693b0d81bde5 Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Sun, 7 May 2023 10:57:24 -0700 Subject: [PATCH] fix(CI): specify shell for yarn cache dir step --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44a28d2..825dea4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT + shell: bash - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)