We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a21cb9 commit cd2aebdCopy full SHA for cd2aebd
.circleci/config.yml
@@ -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
22
+ paths:
23
+ - "node_modules"
24
+ - run: npm run build
0 commit comments