Skip to content

Commit

Permalink
Test composer.lock existence
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Oct 20, 2023
1 parent 2150bac commit 3b25e09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ runs:
- name: "Install locked dependencies"
if: ${{ inputs.dependencies == 'locked' }}
shell: "bash"
run: "composer install --no-interaction --no-progress"
run: |
test -f composer.lock
composer install --no-interaction --no-progress
- name: "Install development dependencies"
if: ${{ inputs.dependencies == 'development' }}
Expand Down

0 comments on commit 3b25e09

Please sign in to comment.