Skip to content

Commit

Permalink
Adding latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed May 10, 2024
1 parent b4e88e3 commit 1e0b956
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,19 @@ jobs:
- name: Set Working Directory
run: echo "Change directory context to Laravel app"
working-directory: ./laravel_app

- name: Remove PHPUnit from composer.json
run: sed -i '' '/"phpunit\/phpunit"/d' composer.json
working-directory: ./laravel_app

- name: Remove composer.lock and re-run composer install
run: |
rm composer.lock
composer install
working-directory: ./laravel_app

- name: Update Package
run: composer update devdojo/auth:dev-main
- name: Install PestPHP
run: composer require pestphp/pest --dev --with-all-dependencies
working-directory: ./laravel_app

- name: Run Tests
Expand Down

0 comments on commit 1e0b956

Please sign in to comment.