Skip to content
Open
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
Binary file added apps/web/public/assets/jonathan-king.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 8 additions & 2 deletions apps/web/src/pods/about/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,15 @@ export const memberList: Member[] = [
urlLinkedin: 'https://www.linkedin.com/in/gabriel-ionut-birsan-b14816307/',
image: './assets/gabriel-ionut.jpeg',
},

{
id: '22',
name: 'Jonathan',
surname: 'King',
urlLinkedin: 'https://www.linkedin.com/in/jonathan-king-6a23861a3/',
image: './assets/jonathan-king.jpeg',
},
{
id: '23',
name: 'Antonio',
surname: 'Contreras',
urlLinkedin:
Expand All @@ -175,7 +181,7 @@ export const memberList: Member[] = [
},

{
id: '23',
id: '24',
name: 'Braulio',
surname: 'Diez',
urlLinkedin: 'https://www.linkedin.com/in/brauliodiez/',
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