File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 - uses : extractions/setup-just@v1
3030 - name : license checker
3131 run : ' cd backend && npx license-checker --onlyAllow="MIT;ISC;Python-2.0;Apache-2.0;BSD;MPL;CC;Custom: http://github.com/dscape/statsd-parser;" --excludePrivatePackages'
32- lint :
33- runs-on :
34- labels : ubuntu-latest-4-cores
35- steps :
36- - uses : actions/checkout@v3
37- - uses : extractions/setup-just@v1
38- - uses : actions/setup-node@v3
39- with :
40- node-version : ' 18'
41- - run : cd backend && yarn install
42- - run : cd backend && yarn run lint
Original file line number Diff line number Diff line change 1+ name : Code quality
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ quality :
9+ runs-on : ubuntu-latest
10+ permissions :
11+ contents : read
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v5
15+ with :
16+ persist-credentials : false
17+ - name : Setup Biome
18+ uses : biomejs/setup-biome@v2
19+ with :
20+ version : latest
21+ - name : Run Biome
22+ run : biome ci --formatter-enabled=false --assist-enabled=false .
You can’t perform that action at this time.
0 commit comments