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 f7dff77 commit ea40799
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Continuous integration
uses: ./.github/actions/ci-setup

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

type-check:
name: Types
Expand All @@ -30,11 +27,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Continuous Integration
uses: ./.github/actions/ci-setup

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

prettify:
name: Prettier
Expand All @@ -44,8 +38,5 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Continuous Integration
uses: ./.github/actions/ci-setup

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

0 comments on commit ea40799

Please sign in to comment.