Skip to content

Commit ca9b9ab

Browse files
dev-ashishkAshish Kumar
authored andcommitted
New lint.yml
1 parent e14509a commit ca9b9ab

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/lint.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
uses: actions/npm@master
19+
with:
20+
args: run lint

0 commit comments

Comments
 (0)