-
Notifications
You must be signed in to change notification settings - Fork 57
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
Use published packages in install scripts #302
Comments
The same can be done for react website using dtaas-client.zip file. Using the zip file avoids the installation of playwright and other devDependencies. These dependencies take a lot of resources during installation. |
The immediate update for the install scripts is to change cd "${TOP_DIR}/client" || exit
yarn install
yarn build to cd "${TOP_DIR}/client" || exit
yarn install --production
yarn build |
The client.yml need to be updated to publish dtaas-client.zip as an artifact of github action. |
A decision has been made to build docker containers for each of components including client. This work is being pursued in issue #381. |
PR #418 resolves the pending work in this issue. |
The library and runner packages has been published in packages. These package must be included in install scripts. The existing
yarn install
commands need to be removed.The text was updated successfully, but these errors were encountered: