Skip to content

Commit 2bca59d

Browse files
add lint check
1 parent e3f7fcc commit 2bca59d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/check.yaml

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

0 commit comments

Comments
 (0)