Fix action and playwright config
All checks were successful
Build / Build application (push) Successful in 3m47s

This commit is contained in:
Kevin Kandlbinder 2024-11-12 15:57:33 +00:00
parent 73a596e68d
commit 0b58e18c73
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ jobs:
run: npx playwright install --with-deps
- run: npm test
name: Test project
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
name: Upload Playwright report
if: ${{ !cancelled() }}
with:
@ -41,7 +41,7 @@ jobs:
retention-days: 30
- run: npm run build-storybook
name: Build storybook
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
name: Upload build directories
with:
name: build-artifacts

View file

@ -5,6 +5,6 @@ export default defineConfig({
command: 'npm run build && npm run preview',
port: 4173
},
reporter: [['html', { open: 'never' }], ['line']],
testDir: 'e2e'
});