Skip to content

Commit b233ebe

Browse files
add lint check
1 parent e3f7fcc commit b233ebe

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/check.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
check:
5+
runs-on: ubuntu-latest
6+
7+
steps:
8+
- uses: actions/checkout@v4
9+
10+
- name: Install modules
11+
run: pnpm install
12+
13+
- name: Run ESLint
14+
run: node lint

0 commit comments

Comments
 (0)