Skip to content

Commit

Permalink
fix(ci): yarn cache
Browse files Browse the repository at this point in the history
  • Loading branch information
xShteff committed Jul 25, 2024
1 parent 96e49b2 commit 96ad9d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache: 'yarn'
scope: '@lego'
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -30,10 +30,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache: 'yarn'
scope: '@lego'
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -46,10 +46,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache: 'yarn'
scope: '@lego'
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache: 'yarn'
scope: '@lego'
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 96ad9d3

Please sign in to comment.