From 17db829ce02bedf66df8103fa4b76377feab0d08 Mon Sep 17 00:00:00 2001 From: Emily Rohrbough Date: Wed, 31 Jul 2024 14:05:33 -0500 Subject: [PATCH 1/3] Update circle.yml --- circle.yml | 51 +++------------------------------------------------ 1 file changed, 3 insertions(+), 48 deletions(-) diff --git a/circle.yml b/circle.yml index 9155ee3b..a9b28aef 100644 --- a/circle.yml +++ b/circle.yml @@ -2,69 +2,24 @@ # for config.yml syntax see https://circleci.com/docs/2.0/configuration-reference/ version: 2.1 -# for testing on Windows -orbs: - win: circleci/windows@5 - -executors: - mac: - macos: - xcode: "14.3.1" - resource_class: macos.m1.medium.gen1 - jobs: - mac-test: - executor: mac - - working_directory: ~/repo - - steps: - - checkout - - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list - linux-test: docker: # find Docker image at https://github.com/cypress-io/cypress-docker-images - - image: cypress/base:18.16.1 + - image: cypress/base:latest working_directory: ~/repo steps: - checkout - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list + - run: npx cypress run --record - win-test: - working_directory: ~/app - executor: - name: win/default - shell: bash.exe - steps: - - checkout - - run: npm ci - - run: npm install cypress - - run: npm run cypress:info - - run: npm run cypress:version - - run: npm run cypress:run - - run: npm run cypress:cache:list workflows: version: 2 tests: jobs: - - win-test: - context: test-runner:commit-status-checks - linux-test: - context: test-runner:commit-status-checks - - mac-test: - context: test-runner:commit-status-checks + context: verify-staging From 5d0962e4561e87755665d3404d555928c4a156f8 Mon Sep 17 00:00:00 2001 From: Emily Rohrbough Date: Wed, 31 Jul 2024 14:06:34 -0500 Subject: [PATCH 2/3] Update cypress.config.js --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index bc214b1d..e2138e99 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,4 +1,5 @@ module.exports = { + projectId: "31rzrx", e2e: { setupNodeEvents(on, config) {}, }, From 74200f87e20ebd709a54f22d14f360cc4a19fac0 Mon Sep 17 00:00:00 2001 From: Emily Rohrbough Date: Wed, 31 Jul 2024 14:17:23 -0500 Subject: [PATCH 3/3] Update cypress.config.js --- cypress.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index e2138e99..8fa50f51 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,5 +1,5 @@ module.exports = { - projectId: "31rzrx", + projectId: '31rzrx', e2e: { setupNodeEvents(on, config) {}, },