Skip to content

Commit

Permalink
specify working dir in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianPallas committed Jul 26, 2024
1 parent eea5668 commit 9707087
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: cd client
working-directory: ./client
- run: pnpm build
working-directory: ./client
- run: pnpm test
working-directory: ./client

e2e-tests:
timeout-minutes: 10
Expand All @@ -32,13 +34,15 @@ jobs:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: cd client
- run: pnpm build
working-directory: ./client
- run: pnpm playwright install --with-deps
working-directory: ./client
- run: pnpm test:e2e
working-directory: ./client
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
path: client/playwright-report/
retention-days: 30

0 comments on commit 9707087

Please sign in to comment.