Skip to content

Commit

Permalink
fix(actions): fix quality workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sukaato committed Aug 26, 2024
1 parent 25d878f commit 1ab042a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions/quality/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ runs:
run: npm install -w @poppy-ui/${{ inputs.package }} @poppy-ui/core @poppy-ui/docs
shell: bash

- name: Prettier
run: npm run format -- --reporter github
- name: Format
run: npx @biomejs/biome format --reporter github
working-directory: ./packages/${{ inputs.package }}
shell: bash

- name: Lint
run: npm run lint -- --reporter github
run: npx @biomejs/biome lint --reporter github
working-directory: ./packages/${{ inputs.package }}
shell: bash

Expand Down

0 comments on commit 1ab042a

Please sign in to comment.