We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c76f4 commit 2ff6c76Copy full SHA for 2ff6c76
1 file changed
.gitlab-ci.yml
@@ -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
21
22
+node-11-llvm-8:
23
+ image: registry.gitlab.com/ovr/staticscript:node-11-llvm-8
24
0 commit comments