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 c4cb28c commit ad8d9c8
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: extract_branch

- name: Install DevDojo Auth from current branch
run: composer require devdojo/auth:dev-${{ env.branch }} --with-all-dependencies
run: "composer require devdojo/auth:dev-${{ env.branch }} --with-all-dependencies"
working-directory: ./laravel_app

- name: Publish the DevDojo Auth Assets
Expand Down Expand Up @@ -78,12 +78,9 @@ jobs:
- name: Clean up composer.json - Remove PHPUnit & trailing commas
run: |
sed -i '/"phpunit\/phpunit"/d' composer.json
sed -i '/"nunomaduro\/collision": "\^8.0",/s/,$//' composer.json
sed -i 's/,\(\s*\}\)/\1/' composer.json
working-directory: ./laravel_app

- name: Show composer.json contents
run: cat composer.json
sed -i '/"nunomaduro\/collision": "\^8.1",/s/,$//' composer.json
# Remove any trailing commas before a closing bracket in require-dev
sed -i 's/,\s*}/}/' composer.json
working-directory: ./laravel_app

- name: Validate composer.json format
Expand Down

0 comments on commit ad8d9c8

Please sign in to comment.