Skip to content

Commit

Permalink
ci(ui): fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Apr 4, 2024
1 parent ee10ffb commit 6683438
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --filter ./ui
run: pnpm --filter ./ui install

- name: Lint
run: pnpm run lint --filter ./ui
run: pnpm --filter ./ui run lint

- name: Prettier
run: pnpm run prettier --filter ./ui
run: pnpm --filter ./ui run prettier

- name: Typecheck
run: pnpm run typecheck --filter ./ui
run: pnpm --filter ./ui run typecheck

- name: Run tests
run: pnpm run test --filter ./ui
run: pnpm --filter ./ui run test

- name: Build
run: pnpm run build --filter ./ui
run: pnpm --filter ./ui run build

0 comments on commit 6683438

Please sign in to comment.