This commit is contained in:
parent
f4aeb7aafb
commit
80407ca0e5
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/biomejs.yml
Normal file
21
.forgejo/workflows/biomejs.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: Code quality checks
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
quality:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Biome
|
||||||
|
run: |
|
||||||
|
curl -L https://github.com/biomejs/biome/releases/download/cli%2Fv1.5.0/biome-linux-x64 -o biome
|
||||||
|
chmod +x biome
|
||||||
|
mv biome /usr/local/bin/biome
|
||||||
|
|
||||||
|
- name: Run Biome
|
||||||
|
run: biome ci .
|
Loading…
Add table
Reference in a new issue