Skip to content

Commit 04361b6

Browse files
committed
Fix
1 parent eb7391d commit 04361b6

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ jobs:
4141

4242
# Optional: Playwright E2E tests
4343
- name: Install Playwright deps
44-
run: npx playwright install --with-deps
45-
# npm install @playwright/test
46-
# npx playwright install
44+
run: |
45+
echo skip
46+
# npx playwright install --with-deps
47+
# npm install @playwright/test
48+
# npx playwright install
4749

4850
- name: Run E2E tests
4951
env:
@@ -63,6 +65,7 @@ jobs:
6365
- name: Upload coverage to Codecov
6466
uses: codecov/codecov-action@v5
6567
with:
68+
token: ${{ secrets.CODECOV_TOKEN }}
6669
files: ./coverage/lcov.info
6770
flags: unit
6871
fail_ci_if_error: true

0 commit comments

Comments
 (0)