Skip to content

Commit

Permalink
ci: fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Aug 9, 2023
1 parent a1ccefe commit 8a9cef8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
19 changes: 14 additions & 5 deletions .github/actions/check-quality/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@ description: 'Checks code quality: prettier, linters, build and test'
runs:
using: 'composite'
steps:
- run: pnpm prettier-check
- run: pnpm lint
- run: pnpm publint
- run: pnpm build
- run: pnpm test:ci
- shell: bash
run: pnpm prettier-check

- shell: bash
run: pnpm lint

- shell: bash
run: pnpm publint

- shell: bash
run: pnpm build

- shell: bash
run: pnpm test:ci
3 changes: 2 additions & 1 deletion .github/actions/setup-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ runs:
cache: 'pnpm'
cache-dependency-path: './pnpm-lock.yaml'

- run: pnpm install --frozen-lockfile
- shell: bash
run: pnpm install --frozen-lockfile

0 comments on commit 8a9cef8

Please sign in to comment.