Skip to content

Commit

Permalink
chore: add "biome check" reviewdog workflow (#136)
Browse files Browse the repository at this point in the history
* add biome ci and reviewdog

* fix(reviewdog): add pnpm install

* fix: remove biome ci from build workflow

as it would always crash

* style: the newline
  • Loading branch information
endes0 authored Apr 1, 2024
1 parent b4e1a47 commit e0d4b76
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: reviewdog
on: [pull_request]
jobs:
biome:
name: runner / Biome
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 8.10.5
- uses: actions/setup-node@v4
with:
node-version: 20.9.x
- run: pnpm install --frozen-lockfile
- uses: mongolyy/reviewdog-action-biome@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review

0 comments on commit e0d4b76

Please sign in to comment.