From 1e98f794d92265ead57ded4f0ff4547d49a6837d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Duvieusart=20De=CC=81ry?= Date: Tue, 5 Mar 2024 11:13:21 -0500 Subject: [PATCH] feat: add test workflow --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..5edb0ac6 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: Test JSONata +on: + push: + branches: [stedi-main] + pull_request: + branches: [stedi-main] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 20 + - run: npm install + - run: npm test