Skip to content

Commit a192c4c

Browse files
Lint workflow
1 parent 9ecdd1c commit a192c4c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/lint.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint
2+
on:
3+
push:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '20'
13+
- run: npm install
14+
- run: npm run build
15+
- run: npm run lint

0 commit comments

Comments
 (0)