We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e14509a commit ca9b9abCopy full SHA for ca9b9ab
.github/workflows/lint.yml
@@ -0,0 +1,20 @@
1
+
2
+on: push
3
+name: lint
4
+jobs:
5
+ build-and-publish:
6
+ name: build and publish
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [10.x]
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - name: npm install
14
+ uses: actions/npm@master
15
+ with:
16
+ args: install
17
+ - name: npm lint
18
19
20
+ args: run lint
0 commit comments