We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179bfaf commit f41de78Copy full SHA for f41de78
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,23 @@
1
+name: Lint
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ run-linters:
7
+ name: Run linters
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Check out Git repository
12
+ uses: actions/checkout@v2
13
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@v1
16
+ with:
17
+ node-version: 12
18
19
+ - name: Install dependencies
20
+ run: npm install
21
22
+ - name: Lint
23
+ run: npm run lint
0 commit comments