Skip to content

Commit

Permalink
chore: frozen lockfile for workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeikel committed Dec 9, 2024
1 parent 2c2d8ab commit 74a2dc9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
version: latest
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
Expand Down
14 changes: 6 additions & 8 deletions apps/web/app/feed/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import Feed from "@/components/Feed/Feed";

const FeedPage = () => {
return (
<div className="flex flex-col gap-4">
<h1 className="text-4xl font-bold">Feed Page</h1>
<Feed />
</div>
);
};
const FeedPage = () => (
<div className="flex flex-col gap-4">
<h1 className="text-4xl font-bold">Feed Page</h1>
<Feed />
</div>
);

export default FeedPage;
3 changes: 1 addition & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 'playwright test --ui'",
"pw:codegen": "playwright codegen http://localhost:3000",
"with-env": "dotenv -e ../../.env --",
"db:generate": "pnpm -F db db:generate",
"prepare": "husky"
"db:generate": "pnpm -F db db:generate"
},
"dependencies": {
"@auth/core": "^0.37.4",
Expand Down
19 changes: 16 additions & 3 deletions pnpm-lock.yaml

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

0 comments on commit 74a2dc9

Please sign in to comment.