Skip to content

Commit a7ba85c

Browse files
committed
fix(github actions): fixed the install dependencies step of the CI Relase workflow
I changed npm to yarn with npm ci but did not account for the differences that are present in the two package managers.
1 parent 450d61a commit a7ba85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
node-version: 'lts/*'
1919
- name: Install dependencies
20-
run: yarn ci
20+
run: yarn install --frozen-lockfile
2121
- name: Release
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)