-
Notifications
You must be signed in to change notification settings - Fork 2
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: add code validation to workflows #18
Conversation
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
## [1.0.3](v1.0.2...v1.0.3) (2024-09-16) ### Bug Fixes * add code validation to workflows ([#18](#18)) ([252edba](252edba))
🎉 This PR is included in version 1.0.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This pull request introduces several significant changes to the CI/CD workflows and the
package.json
configuration, along with some documentation updates. The most important changes include adding a new code validation workflow, updating dependencies and configurations inpackage.json
, and modifying the README to reflect new installation instructions and image URLs so they will render on npm.CI/CD Workflow Improvements:
code_validation.yml
workflow to handle linting, formatting, type checking, and unit tests. This workflow is now a prerequisite for the build and release jobs. (.github/workflows/build.yml
,.github/workflows/release.yml
) [1] [2]actions/checkout
to version 4 andactions/setup-node
to version 4, and updated the build job to use.nvmrc
for the Node.js version and cache Yarn dependencies. (.github/workflows/build.yml
)code_validation.yml
job.Package Configuration Updates:
package.json
to include a description, keywords, repository information, and new scripts for Prettier and TypeScript checks. Also, changed the package name to@liatrio/backstage-dora-plugin
. (package.json
) [1] [2] [3] [4]Documentation Updates:
README.md
) [1] [2] [3] [4] [5] [6]Miscellaneous:
.nvmrc
file specifying Node.js version 18.20.4. (.nvmrc
)CHANGELOG.md
to.prettierignore
. (.prettierignore
)