Skip to content

Commit 83a7fa5

Browse files
authored
build-deploy workflow: Install yarn manually
and not use the cache statement, it complains about the yarn.lock file not being in the root of the checkout/repo.
1 parent 98970ff commit 83a7fa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
uses: actions/setup-node@v3
3636
with:
3737
node-version: '16'
38-
cache: 'yarn'
39-
38+
- name: Install Yarn
39+
run: npm install -g yarn
4040
# node cache
4141
- name: Get yarn cache directory path
4242
id: yarn-cache-dir-path

0 commit comments

Comments
 (0)