mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
19 lines
307 B
YAML
19 lines
307 B
YAML
|
name: Biome
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
quality:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Setup Biome
|
||
|
uses: biomejs/setup-biome@v2
|
||
|
with:
|
||
|
version: latest
|
||
|
- name: Run Biome
|
||
|
run: biome ci .
|