Skip to content
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

feat: circle fixes #2657

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
13 changes: 1 addition & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- run:
name: Run yarn install and save node modules
Expand All @@ -63,7 +62,6 @@ jobs:
resource_class: small
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -77,7 +75,6 @@ jobs:
resource_class: medium
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- run: yarn build
- persist_to_workspace:
Expand All @@ -90,7 +87,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -102,11 +98,10 @@ jobs:
parallelism: 4
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
- run: yarn jest --detectOpenHandles $(circleci tests glob "./lib/**/*.test.{ts,js,tsx}" | circleci tests split | xargs)
- run: cd lib && yarn jest --detectOpenHandles $(circleci tests glob "./**/*.test.{ts,js,tsx}" | circleci tests split | xargs)

release_icon_font:
<<: *default
Expand Down Expand Up @@ -143,7 +138,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -159,7 +153,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -181,7 +174,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -201,7 +193,6 @@ jobs:
executor: nodejs
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui
Expand All @@ -223,7 +214,6 @@ jobs:
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui/artifacts
- run:
Expand All @@ -241,7 +231,6 @@ jobs:
steps:
- *checkout
- *restore_repo
- *restore_node_modules
- attach_workspace:
at: ~/welcome-ui/artifacts
- run:
Expand Down
Loading