Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
juyrjola committed Oct 9, 2023
1 parent 8008434 commit 93e89c9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:

- run: corepack enable
- run: yarn config set nodeLinker node-modules
- name: Get yarn version
id: yarn-version
run: echo "::set-output name=ver::$(yarn -v)"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
Expand All @@ -27,9 +24,9 @@ jobs:
id: cache-yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ steps.yarn-version.outputs.ver }}
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
${{ runner.os }}-yarn-
# FIXME: Remove the two lines below whenever possible
- run: yarn config set enableImmutableInstalls false
Expand Down

0 comments on commit 93e89c9

Please sign in to comment.