add prettier format check to pr
This commit is contained in:
parent
45e7d01e8a
commit
3d15ee13c5
1 changed files with 13 additions and 0 deletions
13
.github/workflows/prettier.yml
vendored
Normal file
13
.github/workflows/prettier.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name: "prettier"
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prettier:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: ./.github/actions/setup
|
||||||
|
|
||||||
|
- name: Run prettier
|
||||||
|
run: bun format:check
|
||||||
Loading…
Reference in a new issue