We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407299e commit b884f69Copy full SHA for b884f69
1 file changed
.github/workflows/ci.yml
@@ -31,3 +31,16 @@ jobs:
31
32
- name: Check consistency
33
run: npm run check:consistency
34
+
35
+ - name: Install CLI dependencies
36
+ run: npm ci --prefix cli
37
38
+ - name: Run unit tests
39
+ run: npm run test:unit --prefix cli
40
41
+ - name: Install Playwright Chromium
42
+ run: npx playwright install --with-deps chromium
43
+ working-directory: cli
44
45
+ - name: Run E2E tests
46
+ run: npm run test:e2e --prefix cli
0 commit comments