funky-framadate-front/.gitlab-ci.yml

17 lines
259 B
YAML
Raw Normal View History

build:
image: node:12
before_script:
- npm ci
script:
2020-02-05 15:44:40 +01:00
- npm run build
artifacts:
paths:
- dist/
test:
image: node:12
type: test
before_script:
- npm ci
script:
- npm run test