1 parent 7f5afd2 commit e319330Copy full SHA for e319330
2 files changed
.circleci/config.yaml
.circleci/config.yml
@@ -0,0 +1,32 @@
1
+version: 2.1
2
+
3
+executors:
4
+ e2e-executor:
5
+ docker:
6
+ - image: cypress/browsers:node10.16.0-chrome76
7
8
+jobs:
9
+ e2e:
10
+ executor: e2e-executor
11
+ steps:
12
+ - checkout
13
+ - run:
14
+ name: Copy base .env file
15
+ command: cp sample.env .env
16
17
+ name: Install node modules
18
+ command: npm install && npm run bootstrap
19
20
+ name: End 2 end test command
21
+ # Running `npm run e2e:ci` causes the circleci node to OOM
22
+ command: npm run e2e
23
24
+workflows:
25
+ version: 2
26
+ tests:
27
+ jobs:
28
+ - e2e:
29
+ filters:
30
+ branches:
31
+ ignore:
32
+ - master
0 commit comments