Skip to content

Commit 278e86d

Browse files
committed
fix(ci): remove empty e2e job and add build config
1 parent 4f60876 commit 278e86d

6 files changed

Lines changed: 6 additions & 59 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
verify:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 15
15+
env:
16+
VITE_CLERK_OAUTH_CLIENT_ID: test-client
17+
VITE_CLERK_OAUTH_ISSUER: https://clerk.example.com
18+
VITE_WEB_APP_URL: https://usememos.com
1519
steps:
1620
- uses: actions/checkout@v4
1721
- uses: pnpm/action-setup@v4
@@ -20,7 +24,6 @@ jobs:
2024
node-version: 22
2125
cache: pnpm
2226
- run: pnpm install --frozen-lockfile
23-
- run: pnpm exec playwright install --with-deps chromium
2427
- run: pnpm lint
2528
- run: pnpm test
26-
- run: pnpm test:e2e
29+
- run: pnpm build

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,3 @@ web-clipper-v*.zip
2222

2323
# test artifacts
2424
coverage/
25-
test-results/
26-
playwright-report/
27-
.playwright/

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
"package:edge": "pnpm build && node scripts/package.mjs edge",
1515
"package:firefox": "pnpm build && node scripts/package.mjs firefox",
1616
"test": "vitest run",
17-
"test:all": "pnpm test && pnpm test:e2e",
18-
"test:e2e": "pnpm build && playwright test",
1917
"test:watch": "vitest",
2018
"test:coverage": "vitest run --coverage",
2119
"lint": "biome check ."
@@ -43,7 +41,6 @@
4341
"devDependencies": {
4442
"@biomejs/biome": "^2.5.1",
4543
"@crxjs/vite-plugin": "^2.7.0",
46-
"@playwright/test": "^1.61.1",
4744
"@tailwindcss/vite": "^4.3.2",
4845
"@testing-library/dom": "^10.4.1",
4946
"@testing-library/jest-dom": "^6.9.1",

playwright.config.ts

Lines changed: 0 additions & 12 deletions
This file was deleted.

pnpm-lock.yaml

Lines changed: 0 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"baseUrl": ".",
1616
"paths": { "@/*": ["src/*"] }
1717
},
18-
"include": ["src", "e2e", "vite.config.ts", "manifest.config.ts", "vitest.config.ts", "playwright.config.ts"]
18+
"include": ["src", "vite.config.ts", "manifest.config.ts", "vitest.config.ts"]
1919
}

0 commit comments

Comments
 (0)