diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index 0caf491718..988b97818b 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies and run build scripts run: npm ci - name: Start the server in the background - run: npm start & + run: npm start > server-output.log & - name: Create the necessary folders run: mkdir -p reports/css - name: Pull the conformance harness docker @@ -57,3 +57,8 @@ jobs: with: name: ${{ steps.sanitize.outputs.sanitized-branch-name }} reports path: reports + - name: Save the server output + uses: actions/upload-artifact@v2 + with: + name: ${{ steps.sanitize.outputs.sanitized-branch-name }} server output + path: server-output.log diff --git a/test/deploy/conformance.env b/test/deploy/conformance.env index 3846d403a0..f05e70762f 100644 --- a/test/deploy/conformance.env +++ b/test/deploy/conformance.env @@ -10,3 +10,4 @@ RESOURCE_SERVER_ROOT=http://localhost:3000 TEST_CONTAINER=/alice/ quarkus.log.category."ResultLogger".level=INFO quarkus.log.category."com.intuit.karate".level=DEBUG +MAXTHREADS=1