Skip to content

Commit

Permalink
Remove buggy cypress orb from cirleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtrKovalenko committed Jun 2, 2020
1 parent cfb5b8c commit 4f68f68
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ defaults: &js_defaults
working_directory: ~/material-ui-pickers

version: 2.1
orbs:
cypress: cypress-io/cypress@1

####################
# Custom jobs
Expand Down Expand Up @@ -92,7 +90,12 @@ jobs:

cypress_tests:
description: Run cypress tests
executor: cypress/browsers-chrome78-ff70
docker:
- image: cypress/browsers:node12.8.1-chrome80-ff72
environment:
## this enables colors in the output
TERM: xterm
working_directory: ~/material-ui-pickers
steps:
- attach_workspace:
at: .
Expand Down Expand Up @@ -120,13 +123,14 @@ jobs:
# Workflow
####################
workflows:
version: 2.1
build_and_test:
jobs:
- checkout_code
- install_deps:
name: 'Install deps'
requires:
- checkout_code
- 'checkout_code'
- build:
name: 'Build and analyze bundlesize'
requires:
Expand Down

0 comments on commit 4f68f68

Please sign in to comment.