We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c3bd7 commit 8bb3bbdCopy full SHA for 8bb3bbd
2 files changed
.github/workflows/s3-e2e.yml
@@ -37,3 +37,6 @@ jobs:
37
- name: E2E Test
38
timeout-minutes: 10
39
run: ./test/e2e/s3/run-tests.sh
40
+ - name: Backend Logs
41
+ if: always()
42
+ run: "! [[ -f ./server.log ]] || cat ./server.log"
test/e2e/s3/run-tests.sh
@@ -56,7 +56,7 @@ log "Waiting for fake-s3-server to start..."
56
wait-for-it localhost:9000 --strict --timeout=10 -- echo '[test/e2e/s3/run-tests] fake-s3-server is UP!'
57
58
NODE_CONFIG_ENV=s3-dev node lib/bin/s3-create-bucket.js
59
-NODE_CONFIG_ENV=s3-dev make run &
+NODE_CONFIG_ENV=s3-dev make run | tee server.log &
60
serverPid=$!
61
62
log 'Waiting for backend to start...'
0 commit comments