Replies: 2 comments 4 replies
-
I should dive into this topic since I don't know anything about it. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
GitHub allows both actions and workflows.. there are many pre-configured workflows and actions we could potentially use.
My ideas is to use the following
.github/workflows/lint.yml
runs ESLint on build as pre-deploy function
.github/workflows/labels.yml
creates labels for issues
.github/workflows/ci.yml
runs our integration testing
.github/workflows/build.yml
runs the react build process
.github/workflows/deploy.yml
deploys build folder to the physical server
.github/workflows/dependabot.yml
keeps track of our npm/node dependencies
These are the exact filenames I would use and you can use github advanced search to find examples of each to build from. Most of these could be run against macos, windows or linux.
I will entertain ideas @manuel12 @pawel975
Beta Was this translation helpful? Give feedback.
All reactions