Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/quiet-toolbar-blush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'quickmock': patch
---

Fix toolbar button hover styles in the VS Code extension so disabled and primary buttons use the correct hover background and text colors.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,22 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Install test browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: node --run install:test-browsers
timeout-minutes: 10

- name: Install Playwright system deps (cache hit)
if: steps.playwright-cache.outputs.cache-hit == 'true'
run: npx playwright install-deps chromium firefox
timeout-minutes: 5

- name: Lint
run: node --run lint
Expand Down Expand Up @@ -48,8 +62,22 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Install test browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: node --run install:test-browsers
timeout-minutes: 10

- name: Install Playwright system deps (cache hit)
if: steps.playwright-cache.outputs.cache-hit == 'true'
run: npx playwright install-deps chromium firefox
timeout-minutes: 5

- name: Build
run: node --run build
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"devDependencies": {
"@lemoncode/typescript-config": "*",
"@lemoncode/vitest-config": "*",
"@playwright/test": "1.59.1",
"@playwright/test": "1.60.0",
"@types/lodash.clonedeep": "4.5.9",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
Expand Down
33 changes: 16 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"check-types": "turbo check-types",
"e2e": "turbo e2e",
"ci:e2e": "turbo ci:e2e",
"install:test-browsers": "npx playwright install --with-deps",
"install:test-browsers": "npx playwright install --with-deps chromium firefox",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "prettier --write .",
Expand Down
2 changes: 1 addition & 1 deletion tooling/vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"@vitest/ui": "4.1.4",
"playwright": "1.59.1",
"playwright": "1.60.0",
"vitest": "4.1.4"
}
}
Loading