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

fix: bumping plate packages and react version to 18 [TOL-2415] #1756

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

aodhagan-cf
Copy link
Contributor

@aodhagan-cf aodhagan-cf commented Sep 30, 2024

  • Bumping plate packages
  • Updating to react v18, required as the cypress component test webpack build fails without it after bumping some of the plate packages
  • Fixing cypress component test parallelism

@wiz-inc-38d59fb8d7
Copy link

wiz-inc-38d59fb8d7 bot commented Sep 30, 2024

Wiz Scan Summary

Scan Module Critical High Medium Low Info Total
IaC Misconfigurations 0 0 0 0 0 0
Vulnerabilities 0 0 0 0 0 0
Sensitive Data 0 0 0 0 0 0
Secrets 0 0 0 0 0 0
Total 0 0 0 0 0 0

View scan details in Wiz

To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension.

@aodhagan-cf aodhagan-cf changed the title fix: bumping plate packages [TOL-2415] fix: bumping plate packages and react version [TOL-2415] Sep 30, 2024
@aodhagan-cf aodhagan-cf changed the title fix: bumping plate packages and react version [TOL-2415] fix: bumping plate packages and react version to 18 [TOL-2415] Sep 30, 2024
@github-actions github-actions bot added the tools label Sep 30, 2024
@@ -71,7 +71,7 @@ jobs:
- run:
name: Run cypress component tests
command: |
TESTFILES=$(circleci tests glob cypress/component/**/*.ts | circleci tests split --split-by=timings --timings-type=filename | tr '\n' ',')
TESTFILES=$(circleci tests glob cypress/component/**/*.ts | circleci tests split --split-by=timings --timings-type=filename | awk '{if (NR>1) printf ","; printf "%s", $0} END {if (NR>0) printf " "}')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a known issue with cypress, if you end a CSV with a comma the cypress command ignores it and runs everything, we are actually running all tests but now in 3 containers instead of splitting

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment