Skip to content

Commit e319330

Browse files
committed
Rename config file
1 parent 7f5afd2 commit e319330

2 files changed

Lines changed: 32 additions & 32 deletions

File tree

.circleci/config.yaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.circleci/config.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
17+
name: Install node modules
18+
command: npm install && npm run bootstrap
19+
- run:
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

Comments
 (0)