From 4509c67f0e012453e9dc1a9f34047e8fbca64799 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Mon, 23 Jan 2023 15:38:07 -0800 Subject: [PATCH] Add more commands --- actions-expressions/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/actions-expressions/README.md b/actions-expressions/README.md index 5048e95..e6d819d 100644 --- a/actions-expressions/README.md +++ b/actions-expressions/README.md @@ -60,6 +60,36 @@ This project is just one of multiple implementations of the GitHub Actions Expre If you do want to contribute, please run [prettier](https://prettier.io/) to format your code and add unit tests as appropriate before submitting your PR. [./testdata](./testdata) contains test cases that all implementations should pass, please also make sure those tests are still passing. +### Build + +```bash +$ npm run build +``` + +or to watch for changes + +```bash +$ npm run watch +``` + +### Test + +```bash +$ npm test +``` + +or to watch for changes and run tests: + +```bash +$ npm run test-watch +``` + +### Lint + +```bash +$ npm run format-check +``` + ## License This project is licensed under the terms of the MIT open source license. Please refer to [MIT](../LICENSE) for the full terms. \ No newline at end of file