Skip to content

Commit cd2aebd

Browse files
Add .circleci/config.yml
1 parent 9a21cb9 commit cd2aebd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
orbs:
3+
browser-tools: circleci/browser-tools@1.2.3
4+
jobs:
5+
build:
6+
docker:
7+
- image: cimg/node:16.13.1-browsers
8+
steps:
9+
- checkout
10+
- browser-tools/install-chrome
11+
- browser-tools/install-chromedriver
12+
- run:
13+
command: |
14+
google-chrome --version
15+
chromedriver --version
16+
name: Check install
17+
- restore_cache:
18+
key: ng-project-{{ .Branch }}-{{ checksum "package-lock.json" }}
19+
- run: npm install
20+
- save_cache:
21+
key: ng-project-{{ .Branch }}-{{ checksum "package-lock.json" }}
22+
paths:
23+
- "node_modules"
24+
- run: npm run build

0 commit comments

Comments
 (0)