diff options
| author | System administrator <root@schneefux.xyz> | 2019-09-27 08:45:18 +0200 |
|---|---|---|
| committer | System administrator <root@schneefux.xyz> | 2019-09-27 08:45:18 +0200 |
| commit | 1e8f15e96b8b5190ea2336417263e576632b90c3 (patch) | |
| tree | d6961a027be1a36fb67ccfa559348905986c34ee /.gitlab-ci.yml | |
| download | deleteme-1e8f15e96b8b5190ea2336417263e576632b90c3.tar.gz deleteme-1e8f15e96b8b5190ea2336417263e576632b90c3.zip | |
Init test project
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a88959a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: node:12 + +cache: + paths: + - node_modules/ + +build frontend: + stage: build + before script: + - npm install + script: + - npm run start |
