-
Notifications
You must be signed in to change notification settings - Fork 66
Developer Getting Started Guide
Z Chen edited this page Jan 31, 2023
·
1 revision
- Git
- Node.js and npm - Node version 16+
Clone the repo and create your own development branch or create your own fork.
Note: If you want to make changes to any .yml files under .github/workflows/ you must use a branch off the main repo instead of a fork. For security reasons GitHub Secrets can only be accessed from the
pull_request_targetfrom forks, which means any .yml changes you make in your fork will not be reflected in the workflow runs.
To set up your local environment, run npm install from the root of your local repository. This only needs to be done once.
To build your code, run npm run build.
To run all tests, run npm run test.