From 164d3c24706aef8aae76341550e0d5df8d650862 Mon Sep 17 00:00:00 2001 From: Nicolas Martinos Date: Wed, 2 Aug 2023 14:26:36 +0300 Subject: [PATCH] chore: adds GH test workflow --- addon/.github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 addon/.github/workflows/test.yml diff --git a/addon/.github/workflows/test.yml b/addon/.github/workflows/test.yml new file mode 100644 index 0000000..efeec32 --- /dev/null +++ b/addon/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: Test + +on: + push: + branches: + - master + pull_request: {} + +jobs: + test: + name: Test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 16 + cache: yarn + - run: yarn install + - run: yarn lint:js + - run: yarn test \ No newline at end of file