Precise DOM morphing
morphing typescript dom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix CI (#33)

authored by

Joel Drapper and committed by
GitHub
4fe6e2a1 99ae508d

+11 -4
+10 -4
.github/workflows/tests.yml
··· 16 16 - name: Install dependencies 17 17 run: bun install 18 18 19 + - name: Install Playwright Browsers 20 + run: bunx playwright install --with-deps chromium firefox webkit 21 + 19 22 - name: Build 20 23 run: bun run build 21 24 22 - - name: Lint 23 - run: bun run lint 25 + - name: Run Unit Tests 26 + run: bun run test 24 27 25 - - name: Run Tests 26 - run: bun run test || bun run test 28 + - name: Run Browser Tests 29 + run: bun run test:browser 30 + 31 + - name: Generate Coverage Report 32 + run: bun run test --coverage
bun.lockb

This is a binary file and will not be displayed.

+1
package.json
··· 30 30 "@vitest/browser-playwright": "^4.0.5", 31 31 "@vitest/coverage-v8": "^4.0.5", 32 32 "@vitest/ui": "^4.0.5", 33 + "happy-dom": "^20.0.10", 33 34 "prettier": "^3.2.5", 34 35 "typescript": "^5.4.2", 35 36 "typescript-eslint": "^7.0.2",