-
Notifications
You must be signed in to change notification settings - Fork 72
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
Changes : Migration to Yarn / Dependencies Update / Pre-commit Configuration / Documentation Update / Deployment Pipeline Implementation #9
Open
govinda777
wants to merge
35
commits into
dappuniversity:master
Choose a base branch
from
govinda777:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
Good morning ! I have a suggestion, could you make a v2 of the video showing how to implement a CI/CD pipeline. |
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.
Pull Request Changes Explanation:
In this pull request, we've made several pivotal updates to enhance the project's performance, security, and development workflow:
Migration to Yarn:
We've transitioned from npm to Yarn. This change was made to harness Yarn's faster installation speeds and its ability to manage dependencies more effectively. If you haven't already, you'll need to install Yarn to work with this project moving forward.
Dependencies Update:
In order to keep our project secure and benefit from the improvements in the latest packages, we've updated all our dependencies to their most recent versions. This ensures we're not only using the most up-to-date tools but also minimizing potential vulnerabilities.
Pre-commit Configuration:
To maintain code quality and ensure that only well-formatted and non-breaking changes are committed, we've set up a pre-commit hook. Now, every time a commit is made, certain checks (like linting and tests) will run automatically. If these checks fail, the commit will be blocked, urging the developer to fix the issues first.
Documentation Update:
We believe in keeping our documentation as reflective of the current state of the project as possible. Thus, we've made necessary updates to the documentation, ensuring new developers or anyone revisiting the project will have a clear understanding of the latest project structure and functionalities.
Deployment Pipeline Implementation:
To automate and streamline our deployment process, we've implemented a deployment pipeline. This ensures that our code, once merged to the main branch, goes through a standardized process of tests and builds before it's deployed to the production environment.
We hope these changes significantly improve the project's overall functionality and developer experience. Feedback is highly welcomed!