Skip to content

Commit

Permalink
getting fixes to work
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Oct 25, 2024
1 parent 2b2685f commit c4cb28c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,13 @@ jobs:
sed -i 's/,\(\s*\}\)/\1/' composer.json
working-directory: ./laravel_app

- name: Show composer.json contents
run: cat composer.json
working-directory: ./laravel_app

- name: Validate composer.json format
run: |
php -r 'json_decode(file_get_contents("composer.json")) ?: exit(1);'
php -r 'if (!json_decode(file_get_contents("composer.json"))) { echo "JSON error: " . json_last_error_msg(); exit(1); }'
working-directory: ./laravel_app

- name: Remove composer.lock and re-run composer install
Expand Down

0 comments on commit c4cb28c

Please sign in to comment.