We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4362c3e commit 78fe662Copy full SHA for 78fe662
.github/workflows/ci.yml
@@ -63,7 +63,7 @@ jobs:
63
path: packages/ui/dist
64
65
test:
66
- name: Run tests
+ name: Run tests (Unit + Playwright)
67
environment: 'test'
68
runs-on: ubuntu-latest
69
defaults:
@@ -87,8 +87,14 @@ jobs:
87
name: ui-build
88
89
90
- - name: Run test
91
- run: pnpm test
+ - name: Install Playwright browsers
+ run: pnpm exec playwright install --with-deps
92
+
93
+ - name: Build app
94
+ run: pnpm build
95
96
+ - name: Run Playwright tests
97
+ run: pnpm exec playwright test
98
99
translation:
100
continue-on-error: true
0 commit comments