Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .circleci/config.yaml

This file was deleted.

32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2.1

executors:
e2e-executor:
docker:
- image: cypress/browsers:node10.16.0-chrome76

jobs:
e2e:
executor: e2e-executor
steps:
- checkout
- run:
name: Copy base .env file
command: cp sample.env .env
- run:
name: Install node modules
command: npm install && npm run bootstrap
- run:
name: End 2 end test command
# Running `npm run e2e:ci` causes the circleci node to OOM
command: npm run e2e

workflows:
version: 2
tests:
jobs:
- e2e:
filters:
branches:
ignore:
- master