Skip to content

Commit

Permalink
fix: update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Villarley committed Dec 22, 2024
1 parent bbd937e commit d1f6b6c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,14 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Set Environment Variables
run: echo "NODE_ENV=test" >> $GITHUB_ENV

- name: Run Tests
run: npm test
run: npm test

- name: Debug on Failure
if: failure()
run: |
echo "Tests failed. Debugging logs:"
cat test-results.log || echo "No logs found"

0 comments on commit d1f6b6c

Please sign in to comment.