Skip to content

Commit

Permalink
chore: fix github action issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Quiddlee committed Mar 22, 2024
1 parent ea40799 commit a19697f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v3

- name: Lint Application
run: cd client && npm i -g pnpm@latest && pnpm && pnpm lint
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm lint

type-check:
name: Types
Expand All @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v3

- name: Check Application Types
run: cd client && npm i -g pnpm@latest && pnpm && pnpm type-check
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm type-check

prettify:
name: Prettier
Expand All @@ -39,4 +39,4 @@ jobs:
uses: actions/checkout@v3

- name: Check Application Types
run: cd client && npm i -g pnpm@latest && pnpm && pnpm prettier:fix
run: cd client && npm i -g pnpm@latest && pnpm i && pnpm prettier:fix

0 comments on commit a19697f

Please sign in to comment.