Skip to content

Commit

Permalink
Add the --frozen-lockfile argument to yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
xRealNeon committed Aug 31, 2021
1 parent f1670bb commit 4c3ecd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
steps:
- name: Build Vue
run: |
if [ true == ${{ inputs.useyarn }} ]; then yarn install; else npm ci; fi
if [ true == ${{ inputs.useyarn }} ]; then yarn install --frozen-lockfile; else npm ci; fi
if [ true == ${{ inputs.useyarn }} ]; then yarn build; else npm run build; fi
cd dist
if [ "none" != ${{ inputs.cname }} ]; then echo '${{ inputs.cname }}' > CNAME; fi
Expand Down

0 comments on commit 4c3ecd1

Please sign in to comment.