-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig.yml
106 lines (104 loc) · 2.86 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version: 2.1
jobs:
checkout:
working_directory: ~/nest-boilerplate
docker:
- image: cimg/node:18.13-browsers
steps:
- checkout
- save_cache:
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
paths:
- ~/nest-boilerplate
dependencies:
working_directory: ~/nest-boilerplate
docker:
- image: cimg/node:18.13-browsers
steps:
- restore_cache:
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- restore_cache:
key: v0-node-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm ci
- save_cache:
key: v0-node-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- ~/nest-boilerplate/node_modules
lint:
working_directory: ~/nest-boilerplate
docker:
- image: cimg/node:18.13-browsers
steps:
- restore_cache:
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- restore_cache:
key: v0-node-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: ESLint
command: npm run lint
- run:
name: Prettier
command: npm run prettier:check
test:
working_directory: ~/nest-boilerplate
docker:
- image: cimg/node:18.13-browsers
- image: cimg/postgres:16.1
environment:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
steps:
- restore_cache:
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- restore_cache:
key: v0-node-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: Test
command: npm run test
- run:
name: Copy .env
command: cp .env.dist .env
- run:
name: Wait for Postgres to start
command: dockerize -wait tcp://localhost:5432 -timeout 1m
- run:
name: E2E
command: npm run test:e2e
build:
working_directory: ~/nest-boilerplate
docker:
- image: cimg/node:18.13-browsers
steps:
- restore_cache:
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
- restore_cache:
key: v0-node-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: Build
command: npm run build
- save_cache:
key: v0-build-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
paths:
- ~/nest-boilerplate/dist/nest-boilerplate
workflows:
version: 2
ci:
jobs:
- checkout
- dependencies:
requires:
- checkout
- lint:
requires:
- dependencies
- test:
requires:
- lint
- build:
requires:
- test