Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ccf6a39

Browse files
authoredFeb 6, 2024
fix: asset compute integration test workflow not detecting successful run (#141)
1 parent dcbd87b commit ccf6a39

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎.github/workflows/asset-compute-smoke-test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,13 @@ jobs:
3030
./node_modules/mocha/bin/mocha test/index.test.js > consoleoutput.txt
3131
3232
grep "App initialization finished!" consoleoutput.txt
33-
grep "Successful deployment" consoleoutput.txt
34-
grep "Running tests in test/asset-compute/worker" consoleoutput.txt
33+
grep -e "Running tests in .*/test/asset-compute/worker" consoleoutput.txt
3534
grep "All tests were successful." consoleoutput.txt
3635
3736
- id: output
3837
name: Write the output to console for debugging
3938
if: ${{ failure() }}
4039
run: |
41-
if [ -d "ffapp" ]; then cd ffapp; fi
4240
cat consoleoutput.txt
4341
4442
- id: slacknotification

0 commit comments

Comments
 (0)
Please sign in to comment.