initial gitlab-ci
This commit is contained in:
parent
2e33b53a0b
commit
2aadf55a0d
1 changed files with 12 additions and 0 deletions
12
.gitlab-ci.yml
Normal file
12
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
image: node:lts
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
- build
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npm install
|
||||||
|
- npm install -g --save-dev shadow-cljs
|
||||||
|
- shadow-cljs compile test
|
Reference in a new issue