diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 78350a73..953a97e5 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -18,7 +18,9 @@ jobs: with: node-version: '22.x' - run: npm ci - - run: npm run test:ci 2>&1 | tee test-output.log + - run: | + set -o pipefail + npm run test:ci 2>&1 | tee test-output.log - name: Upload test logs uses: actions/upload-artifact@v4 if: always()