Skip to content

remove working directory from dotnet test command #7

remove working directory from dotnet test command

remove working directory from dotnet test command #7

name: Playwright Tests (typescript)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
working-directory: ./typescript
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: ./typescript
- name: Run Playwright tests
run: npx playwright test
working-directory: ./typescript
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./typescript/playwright-report/
retention-days: 30