WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Developer Getting Started Guide

Z Chen edited this page Jan 31, 2023 · 1 revision

Get the following tools

Get the code

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_target from forks, which means any .yml changes you make in your fork will not be reflected in the workflow runs.

Building and testing your changes

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.

Clone this wiki locally