From 4edc3110ae0ff54378452112915e878c9e4aa37a Mon Sep 17 00:00:00 2001 From: muellerfluri Date: Thu, 12 Sep 2024 15:31:15 +0200 Subject: [PATCH] test(citrus-simulator-ui): add ls to check if report is absent and working directory correct --- .github/workflows/frontend.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 9bb1b771..8b1e8402 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -70,6 +70,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + - name: See if current directory is the right one + run: ls + working-directory: simulator-ui - name: Install dependencies run: npm ci --cache .npm --force working-directory: simulator-ui @@ -82,7 +85,7 @@ jobs: - uses: actions/upload-artifact@v4 with: name: test-results - path: test-results/**/*.webm + path: test-results/ retention-days: 30 - uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} @@ -90,3 +93,6 @@ jobs: name: playwright-report path: playwright-report/ retention-days: 30 + - name: See if current directory test report is generated + run: ls + working-directory: simulator-ui