From c2a195ae8bd479e3492837d90703c56d6a891579 Mon Sep 17 00:00:00 2001 From: Idan Levian Date: Sun, 21 Jul 2024 21:23:13 +0300 Subject: [PATCH] [PKD-11]: Add test to CI/CD --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..22ebce0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Unit Tests + +on: + push: + branches: + - '**' + pull_request: + branches: + - '**' + +jobs: + Jest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run Tests + run: | + yarn + yarn test \ No newline at end of file