Circleci Orb Versions Save

Install, cache and run Cypress.io tests on CircleCI with minimal configuration.

v3.0.0

1 year ago

BREAKING CHANGE - V3

What's Changed

  • A single cypress/run job that can be in parallel
  • A simplified API
  • Improved caching
  • Improved Executors

https://github.com/cypress-io/circleci-orb/pull/391

Full Changelog: https://github.com/cypress-io/circleci-orb/compare/v2.2.0...v3.0.0

v2.2.0

1 year ago

v2.1.0

1 year ago

This release adds executors for:

  • cypress/base:14-14.2-slim
  • cypress/browsers:node16.14.0-chrome99-ff97
  • cypress/browsers:node16.14.2-slim-chrome100-ff99-edge

v2.0.0

2 years ago

This release of the CircleCI Orb makes the orb compatible with Cypress v10

v1.29.0

2 years ago

To be passed to --env CLI argument

version: 2.1
orbs:
  cypress: cypress-io/cypress@1
workflows:
  build:
    jobs:
      - cypress/run:
          env: userName=Joe,apiKey=1234567890
```

v1.28.0

3 years ago

Because Cypress v7 requires at least Node 12

v1.27.0

3 years ago

Before:

workflows:
  test:
    jobs:
      - cypress/install:
          executor: node-12
          working_directory: packages/myapp1
          build: cd packages/myapp1 && npm run build

After

workflows:
  test:
    jobs:
      - cypress/install:
          executor: node-12
          working_directory: packages/myapp1
          build: npm run build

v1.26.0

3 years ago

To point at the Docker images that have all dependencies to run Cypress v5

v1.25.0

3 years ago
version: 2.1
orbs:
  cypress: cypress-io/cypress@1
workflows:
  build:
    jobs:
      - cypress/install
      - cypress/run:
          requires:
            - cypress/install
          record: true
          parallel: true
          parallelism: 2
          ci-build-id: testing-commit-$CIRCLE_SHA1

v1.24.0

4 years ago
  • added debug parameter to set DEBUG environment variable
version: 2.1
orbs:
  cypress: cypress-io/cypress@1
workflows:
  build:
    jobs:
      - cypress/run:
          name: Debug with Cypress CLI logs
          debug: cypress:cli
  • When using working_directory and store_artifacts, prepends the paths, closed #278