Skip to content

Commit cb3b8e9

Browse files
committed
Set up GitLab CI.
1 parent ad810c1 commit cb3b8e9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.gitlab-ci.yml

+16
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)