Skip to content

Commit 2c3d72d

Browse files
- added drone config
1 parent d7471e4 commit 2c3d72d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.drone.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
pipeline:
2+
install:
3+
image: node:8.6.0
4+
commands:
5+
- node -v
6+
- npm -v
7+
- npm install
8+
9+
testing:
10+
image: node:8.6.0
11+
group: testing
12+
commands:
13+
- npm run test
14+
15+
linting:
16+
image: node:8.6.0
17+
group: testing
18+
commands:
19+
- npm run lint

0 commit comments

Comments
 (0)