Skip to content

Commit

Permalink
report failure properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher David committed Nov 26, 2023
1 parent f407dce commit 230e198
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
- name: Remove node_modules
run: rm -rf node_modules
- name: Execute tests (Unit and Feature tests) via PHPUnit
continue-on-error: true
id: test_step
env:
DB_CONNECTION: pgsql
Expand All @@ -62,7 +61,7 @@ jobs:
DB_DATABASE: laravel_test
DB_USERNAME: root
DB_PASSWORD: password
run: vendor/bin/pest --testdox > test-summary.txt || true
run: vendor/bin/pest --testdox > test-summary.txt
- name: Comment PR on Test Result
if: always() && github.event_name == 'pull_request'
uses: actions/github-script@v5
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ yarn-error.log
/.vscode
.DS_Store
test-summary.txt
test-results.xml

0 comments on commit 230e198

Please sign in to comment.