Add .gitlab-ci.yml

This commit is contained in:
Mikko Ahlroth 2019-12-22 08:34:16 +00:00
parent 3459e5b32a
commit c45b6212b3

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
image: node:12.13.1
pages:
script:
- npm install typescript
- ./node_modules/.bin/tsc -p tsconfig.json
- mkdir public
- cp -r index.html style.css dist public/
artifacts:
paths:
- public
only:
- master