From 423fb98da902f7380d4737546f82c002c9a065a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Sch=C3=B6nb=C3=A4chler?= <42278642+schoero@users.noreply.github.com> Date: Sat, 21 Oct 2023 09:07:00 +0200 Subject: [PATCH] ci: output visual test artifacts --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 634dc73..00bdd2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,14 @@ jobs: run: npm ci - name: Run tests - run: npm test + run: npm test:visual + + - name: archive visual outputs + uses: actions/upload-artifact@v3 + with: + name: visual-test-results + path: | + tests/output strategy: fail-fast: true