2019-09-09 12:59:28 +00:00
## bootstrapping
2020-04-12 03:43:21 +00:00
This a [JavaScript ](https://help.github.com/en/articles/about-actions#types-of-actions ) action but uses [TypeScript ](https://www.typescriptlang.org/docs/home.html ) to generate that JavaScript.
2019-09-09 12:59:28 +00:00
2020-04-12 03:43:21 +00:00
You can bootstrap your environment with a modern version of npm and by running `npm i` at the root of this repo.
2019-09-09 12:59:28 +00:00
## testing
2020-04-12 03:43:21 +00:00
Tests can be found under under `__tests__` directory and are runnable with the `npm t` command.
2019-09-09 12:59:28 +00:00
## source code
Source code can be found under the `src` directory. Running `npm run build` will generate the JavaScript that will run within GitHub workflows.
## formatting
2020-04-12 03:43:21 +00:00
A minimal attempt at keeping a consistent code style is can be applied by running `npm run fmt` .