Skip to content

Commit

Permalink
test(citrus-simulator-ui): add ls to check if report is absent and wo…
Browse files Browse the repository at this point in the history
…rking directory correct
  • Loading branch information
muellerfluri committed Sep 12, 2024
1 parent f9dff12 commit 4edc311
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -82,11 +85,14 @@ 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() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: See if current directory test report is generated
run: ls
working-directory: simulator-ui

0 comments on commit 4edc311

Please sign in to comment.