We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f349a8a commit f6eeef0Copy full SHA for f6eeef0
.gitlab-ci.yml
@@ -0,0 +1,25 @@
1
+image: node:10.15.0
2
+
3
+stages:
4
+ - build
5
+ - test
6
7
+cache:
8
+ paths:
9
+ - node_modules/
10
11
+build site:
12
+ stage: build
13
+ script:
14
+ - npm install --progress=false
15
+ - npm run build
16
17
+unit test:
18
+ stage: test
19
20
+ - npm run test
21
+ artifacts:
22
23
+ - dist/
24
25
+ - package.json
0 commit comments