From e319330038728b2f94f38ea8f8b2ea318bc2eaa9 Mon Sep 17 00:00:00 2001 From: Bouncey Date: Sun, 27 Oct 2019 12:55:32 +0000 Subject: [PATCH] Rename config file --- .circleci/config.yaml | 32 -------------------------------- .circleci/config.yml | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 32 deletions(-) delete mode 100644 .circleci/config.yaml create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yaml b/.circleci/config.yaml deleted file mode 100644 index 7ceb8035d5c5e3..00000000000000 --- a/.circleci/config.yaml +++ /dev/null @@ -1,32 +0,0 @@ -version: 2 - -executors: - e2e-executor: - docker: - - image: cypress/browsers:node10.16.0-chrome76 - -jobs: - e2e: - executor: e2e-executor - steps: - steps: - - checkout - - run: - name: Copy base .env file - command: cp sample.env .env - - run: - name: Install node modules - command: npm ci - - run: - name: End 2 end test command - command: npm run e2e:ci - -workflows: - version: 2 - tests: - jobs: - - e2e: - filters: - branches: - ignore: - - master \ No newline at end of file diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000000000..49c2e5ff02b141 --- /dev/null +++ b/.circleci/config.yml @@ -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 \ No newline at end of file