Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.

Commit 5a3ea1c

Browse files
committed
Set up GitLab CI.
1 parent 6a37394 commit 5a3ea1c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.gitlab-ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
image: node:latest
2+
3+
before_script:
4+
- npm install
5+
6+
cache:
7+
paths:
8+
- node_modules/
9+
10+
test_all:
11+
script:
12+
- npm test
13+
14+
test_lint:
15+
script:
16+
- npm run lint

0 commit comments

Comments
 (0)