Skip to content

Commit

Permalink
update frontend workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AkashSDas committed Aug 11, 2024
1 parent 59b3ea0 commit df26335
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache: "npm"
- run: npm install -g pnpm
- name: Install dependencies
working-directory: frontend
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache: "npm"
- run: npm install -g pnpm
- name: Install dependencies
working-directory: frontend
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "pnpm"
cache: "npm"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/404.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Layout } from "@app/components/shared/layout/Layout";
import { fontStyles } from "@app/utils/fonts";
import { Text } from "@chakra-ui/react";
import Head from "next/head";
//

export default function NotFoundPage() {
return (
<>
Expand Down

0 comments on commit df26335

Please sign in to comment.