gilde-ci-cd/npm-build-template.gitlab-ci.yml
2021-07-06 14:24:10 +02:00

11 lines
174 B
YAML

.npm-build:
image: $NODE_IMAGE
stage: build
script:
- npm install
- npm run build
artifacts:
expire_in: 2 weeks
when: always
paths:
- dist/*