From 25ed96b8340b072d29615a68ccf5bad45aa5f7cd Mon Sep 17 00:00:00 2001 From: Alec Rajeev <13004609+alecrajeev@users.noreply.github.com> Date: Mon, 22 Jul 2024 12:45:16 -0400 Subject: [PATCH] test1 --- .github/workflows/test.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 825bca9..24cddd5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,17 +10,17 @@ jobs: steps: - uses: actions/checkout@v4 - uses: volta-cli/action@v1 - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: | - folder=$(yarn config get cacheFolder) - echo "dir=$folder" >> $GITHUB_OUTPUT; - - uses: actions/cache@v4 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- + # - name: Get yarn cache directory path + # id: yarn-cache-dir-path + # run: | + # folder=$(yarn config get cacheFolder) + # echo "dir=$folder" >> $GITHUB_OUTPUT; + # - uses: actions/cache@v4 + # id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + # with: + # path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + # key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + # restore-keys: | + # ${{ runner.os }}-yarn- - run: yarn install - run: yarn test