Skip to content

Emilyrohrbough patch 1 #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
51 changes: 3 additions & 48 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

1 change: 1 addition & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
projectId: '31rzrx',
e2e: {
setupNodeEvents(on, config) {},
},
Expand Down