Skip to content

Commit 99056a9

Browse files
ci: add quality-check workflow
1 parent 932babd commit 99056a9

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
- name: Install
18+
run: npm install
19+
- name: Run 10xly Lint
20+
run: npx eslint . --max-warnings 0

0 commit comments

Comments
 (0)