Skip to content

Commit

Permalink
chore: some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Dec 20, 2024
1 parent a514f16 commit ea8894a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ env:
jobs:
lighthouseci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/client
strategy:
matrix:
node-version: [22]
Expand Down
6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"recommendations": ["bradlc.vscode-tailwindcss", "esbenp.prettier-vscode"]
"recommendations": [
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"github.vscode-github-actions"
]
}
2 changes: 1 addition & 1 deletion apps/client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default defineConfig({
alias: [
{
find: '~/',
replacement: './app/',
replacement: '/app/',
},
],
},
Expand Down
1 change: 1 addition & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ const config: PlaywrightTestConfig = {

/* Run your local dev server before starting the tests */
webServer: {
cwd: './apps/client',
command: 'pnpm run build && pnpm run preview',
url: 'http://localhost:4173/local-microblogging-client/',
reuseExistingServer: !process.env.CI,
Expand Down

0 comments on commit ea8894a

Please sign in to comment.