Skip to content

Commit 2ff6c76

Browse files
committed
Feature(CI): Initial
1 parent 71c76f4 commit 2ff6c76

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.gitlab-ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
stages:
3+
- tests
4+
5+
.run_tests_template: &run_tests
6+
stage: tests
7+
tags:
8+
- docker
9+
script:
10+
- npm ci
11+
- npm run build
12+
- npm run test
13+
14+
node-11-llvm-6:
15+
image: registry.gitlab.com/ovr/staticscript:node-11-llvm-6
16+
<<: *run_tests
17+
18+
node-11-llvm-7:
19+
image: registry.gitlab.com/ovr/staticscript:node-11-llvm-7
20+
<<: *run_tests
21+
22+
node-11-llvm-8:
23+
image: registry.gitlab.com/ovr/staticscript:node-11-llvm-8
24+
<<: *run_tests

0 commit comments

Comments
 (0)