Whalebird-desktop-client-ma.../.circleci/config.yml

35 lines
980 B
YAML
Raw Normal View History

2018-04-12 14:36:56 +02:00
version: 2
jobs:
build:
docker:
2022-01-27 14:44:38 +01:00
- image: node:16.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:
name: git
2018-09-26 15:01:03 +02:00
command: |
apt-get update
apt-get install -y git
2018-04-12 14:36:56 +02:00
- restore_cache:
name: Restoring cache - node_modules
keys:
2022-01-27 14:44:38 +01:00
- node_modules-{{ arch }}-node16.13.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
2018-04-12 14:36:56 +02:00
- run:
name: Install packages
2020-09-13 10:13:22 +02:00
command: yarn install
2018-04-12 14:36:56 +02:00
- save_cache:
name: Saving cache - node_modules
2022-01-27 14:44:38 +01:00
key: node_modules-{{ arch }}-node16.13.1-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
2018-04-12 14:36:56 +02:00
paths:
- node_modules
- run:
name: spec
2020-09-13 10:13:22 +02:00
command: yarn run spec
- run:
name: compile main
command: yarn run pack:main
- run:
name: compile renderer
command: yarn run pack:renderer