Files
video2document/.gitlab-ci.yml
T

22 lines
306 B
YAML

image: node:latest
stages:
- install
- test
job-install:
stage: install
script:
- npm install
artifacts:
untracked: false
when: on_success
access: all
expire_in: "30 days"
paths:
- node_modules
job-test:
stage: test
script:
- npm test