Skip to content
Merged
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
18 changes: 14 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@ defaults: &defaults
docker:
- image: circleci/node:9.10
restore_repo: &restore_repo
restore_cache:
keys:
- v1-repo-{{ .Branch }}-{{ .Revision }}
# The cache logic of CircleCI has been disabled for Security reasons.
# We can no longer use it.
# restore_cache:
# keys:
# - v1-repo-{{ .Branch }}-{{ .Revision }}
run:
name: Install js dependencies
command: yarn
version: 2
jobs:
checkout:
<<: *defaults
steps:
- *restore_repo
- checkout
- *restore_repo
- run:
name: Check versions and env
command: |
Expand Down Expand Up @@ -41,6 +46,7 @@ jobs:
test_unit:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: Lint
Expand All @@ -67,6 +73,7 @@ jobs:
test_material-ui-x:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: material-ui-icons
Expand Down Expand Up @@ -135,6 +142,7 @@ jobs:
docker:
- image: circleci/node:9.10
steps:
- checkout
- *restore_repo
- run:
name: Can we generate the material-ui build?
Expand All @@ -148,6 +156,7 @@ jobs:
test_browser:
<<: *defaults
steps:
- checkout
- *restore_repo
- run:
name: Can we generate the api of the docs?
Expand All @@ -168,6 +177,7 @@ jobs:
- image: circleci/node:9.10
- image: selenium/standalone-chrome:3.11.0
steps:
- checkout
- *restore_repo
- run:
name: Visual regression tests
Expand Down