Skip to content

Commit abe20af

Browse files
Merge pull request #1 from MLKP1/feat/config-ci
ci(actions): Adicionar action para fazer lint
2 parents cae499c + 716ac8b commit abe20af

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check Lint and Format
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
check:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Run Biome
19+
run: npx biome ci

0 commit comments

Comments
 (0)