We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f15fa6f commit 2128670Copy full SHA for 2128670
.github/workflows/tests.yml
@@ -84,7 +84,17 @@ jobs:
84
- run: npm ci
85
- run: docker compose up -d
86
working-directory: example
87
- - run: npm run -w example start &
+ - run: npm run -w example start 2>&1 | tee example.log &
88
- run: npx wait-on http://localhost:1429/plaque/newton-s-apple-tree-monash-university -t 30000
89
90
- run: npm run -w example test -- --debug
91
+ - if: failure()
92
+ uses: actions/upload-artifact@v4
93
+ with:
94
+ name: smoke-test-logs
95
+ path: example.log
96
97
+ uses: actions/upload-artifact@v7
98
99
+ name: api-tuner-debug
100
+ path: /tmp
0 commit comments