Skip to content

Commit b0e4cb6

Browse files
committed
ci: add quality-check workflow
1 parent c931143 commit b0e4cb6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/lint.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 10xly Code Quality
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
branches: ["**"]
8+
9+
jobs:
10+
quality-check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: "25"
17+
cache: "npm"
18+
- name: Install
19+
run: npm install
20+
- name: Run 10xly Lint
21+
run: npx eslint . --max-warnings 0

0 commit comments

Comments
 (0)