From 1d185eb0b7df37ce23d550bc24a3d5c82562d137 Mon Sep 17 00:00:00 2001 From: Theo Truong Date: Tue, 9 Apr 2024 17:07:04 -0600 Subject: [PATCH] # Added Tools Testing workflow Signed-off-by: Theo Truong --- .github/workflows/tools.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/tools.yml diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml new file mode 100644 index 000000000..37c215071 --- /dev/null +++ b/.github/workflows/tools.yml @@ -0,0 +1,25 @@ +name: Tools Testing + +on: + push: + branches: ['**'] + paths: + - 'tools/**' + pull_request: + branches: ['**'] + paths: + - 'tools/**' + +jobs: + tools-tests: + runs-on: ubuntu-latest + defaults: + run: + working-directory: tools + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 20.10.0 + - run: npm install + - run: npm run test