2018-04-12 14:36:56 +02:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
2019-12-11 14:59:20 +01:00
|
|
|
- image: node:12.13.1-buster-slim
|
2018-04-12 14:36:56 +02:00
|
|
|
working_directory: /var/opt/app
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-09-26 15:01:03 +02:00
|
|
|
- run:
|
2018-09-29 12:20:05 +02:00
|
|
|
name: git
|
2018-09-26 15:01:03 +02:00
|
|
|
command: |
|
|
|
|
apt-get update
|
2018-09-29 12:20:05 +02:00
|
|
|
apt-get install -y git
|
2018-04-12 14:36:56 +02:00
|
|
|
- restore_cache:
|
|
|
|
name: Restoring cache - node_modules
|
|
|
|
keys:
|
2019-12-11 14:59:20 +01:00
|
|
|
- node_modules-{{ arch }}-node12.13.1-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
|
2018-04-12 14:36:56 +02:00
|
|
|
- run:
|
|
|
|
name: Install packages
|
|
|
|
command: npm install
|
|
|
|
- save_cache:
|
|
|
|
name: Saving cache - node_modules
|
2019-12-11 14:59:20 +01:00
|
|
|
key: node_modules-{{ arch }}-node12.13.1-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
|
2018-04-12 14:36:56 +02:00
|
|
|
paths:
|
|
|
|
- node_modules
|
|
|
|
- run:
|
2018-12-26 12:29:05 +01:00
|
|
|
name: spec
|
2018-12-30 08:56:38 +01:00
|
|
|
command: npm run spec
|