cic-staff-client/.gitlab-ci.yml

24 lines
340 B
YAML
Raw Normal View History

2020-11-25 09:49:35 +01:00
stages:
- install
install_dependencies:
stage: install
2020-11-25 09:34:04 +01:00
image: node:15-alpine3.10
tags:
- docker
script:
2020-11-25 09:49:35 +01:00
- npm install
cache:
key:
files:
- package-lock.json
paths:
- node_modules
policy: pull
only:
refs:
- merge_requests
- master
changes:
- package-lock.json