- This has to use v16.10.0 version of node for development
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Since you have GitHub Actions set up with npm-publish.yml that triggers on version tags, you only need to:
-
Bump the version:
npm version patch
This will:
- Update package.json version
- Create a git commit
- Create a version tag
-
Push the changes and tag:
git push --follow-tags
The GitHub Action will automatically:
- Build the package
- Publish to npm when it detects the version tag
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.