Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: asset compute integration test workflow not detecting a successful run #141

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/asset-compute-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,13 @@ jobs:
./node_modules/mocha/bin/mocha test/index.test.js > consoleoutput.txt

grep "App initialization finished!" consoleoutput.txt
grep "Successful deployment" consoleoutput.txt
grep "Running tests in test/asset-compute/worker" consoleoutput.txt
grep -e "Running tests in .*/test/asset-compute/worker" consoleoutput.txt
grep "All tests were successful." consoleoutput.txt

- id: output
name: Write the output to console for debugging
if: ${{ failure() }}
run: |
if [ -d "ffapp" ]; then cd ffapp; fi
cat consoleoutput.txt

- id: slacknotification
Expand Down