Dev#5
Merged
Merged
Conversation
…tifacts to the server
…orting tools to improve maintainability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements and refactors to streamline testing, deployment, and configuration for the MetalDeploy project. The most significant changes include enhanced multi-server deployment and artifact copying support, modernization of CI/CD workflows (GitHub Actions and Jenkins), and improved linting/test automation. Additionally, configuration files have been updated for more robust environment management and code quality enforcement.
Major feature enhancements:
remote_host,remote_user,ssh_key, andremote_passwordin bothaction.ymland documentation.copy_artifactsinput to enable efficient copying of build artifacts (e.g.,dist/,node_modules) to remote servers with automatic compression.README.mdwith usage examples for both features. [1] [2] [3] [4] [5]CI/CD workflow modernization:
GitHub Actions workflows:
.github/workflows/test.ymlby delegating tomakecommands for running tests, linting, and validation.Jenkinsfile improvements:
Testing and linting automation:
cleantarget to remove generated environment directories. [1] [2]Configuration and code quality:
.env.testfile for exhaustive test scenarios..flake8configuration for consistent linting, and updated.pre-commit-config.yamlto exclude generated envs and align with new linting rules. [1] [2] [3] [4]These updates collectively make the deployment process more flexible, robust, and maintainable, while improving developer experience and code quality.