-
-
Notifications
You must be signed in to change notification settings - Fork 130
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
build(cli): Add lint workflow for API #44
build(cli): Add lint workflow for API #44
Conversation
PR Description updated to latest commit (a8d6008) |
PR Analysis
PR Feedback💡 General suggestions: The PR is well-structured and the addition of the linting workflow will help maintain code quality in the 🤖 Code feedback:
✨ Usage tips:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! This gets merged now.
🎉 This PR is included in version 1.0.0-alpha.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Type
enhancement
Description
.github/workflows/api.yaml
that triggers on push and pull request events.apps/api
directory using ESLint.PR changes walkthrough
1 files
api.yaml
.github/workflows/api.yaml
The file
.github/workflows/api.yaml
has been added. Itincludes a new GitHub Actions workflow that triggers on push
and pull request events. The workflow validates the code in
the
apps/api
directory using ESLint. It runs on anUbuntu-latest environment and uses Node.js version 20 and
pnpm version 8 for package management. The workflow steps
include checking out the code, setting up Node.js and pnpm,
installing packages, and running the linting command.
User description
Description
This pull request adds a lint workflow to the project. The workflow runs on push and pull request events and validates the code using ESLint.
Fixes #38
Dependencies
No New Dependencies added.
Future Improvements
We can bump of the dependencies of the for the eslint package. All of them are non breaking updates
Mentions
@rajdip-b
Developer's checklist