Yield generated for f2c46617-1c7e-4528-98b2-e7c7fccbfd11
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

90 lines
1.8 KiB

version: 2
# --- Constants --- #
globals:
images:
node: &node cimg/node:lts
postgres: &postgres circleci/postgres:9.6.5
caches:
dependencies: &dependencies dependencies-{{ checksum "package.json" }}
# --- Commands --- #
commands:
setup_dependencies:
description: Setup the environment
steps:
- checkout
- restore_cache:
keys:
- *dependencies
# --- Jobs definitions --- #
jobs:
build: &shared-config
docker:
- image: *node
working_directory: ~/app
steps:
- checkout
- restore_cache:
keys:
- *dependencies
# fallback to using the latest cache if no exact match is found
- dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: *dependencies
test:
<<: *shared-config
steps:
- setup_dependencies
- run: yarn test
test-e2e:
<<: *shared-config
docker:
- image: *node
- image: *postgres
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
steps:
- setup_dependencies
- run:
command: yarn test:e2e
environment:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
lint:
<<: *shared-config
steps:
- setup_dependencies
- run:
name: Check files format
command: yarn format:check
- run:
name: Lint files
command: yarn lint
# --- Workflow definition --- #
workflows:
version: 2
build-test-and-lint:
jobs:
- build
- test:
requires:
- build
- test-e2e:
requires:
- build
- lint:
requires:
- build