From 1a8f562437dfc5ad714080c891dd816eff6ba714 Mon Sep 17 00:00:00 2001 From: Bruno Dias Date: Wed, 23 Nov 2022 22:32:58 -0300 Subject: [PATCH] running tests on github actions --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..f10d5d08 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: Test + +on: + pull_request: + branches: + - master + - v4 + - chore/github-actions + +jobs: + main: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + + - uses: actions/setup-node@v2 + with: + node-version: 18 + cache: 'npm' + cache-dependency-path: '**/package-lock.json' + - run: make deps-project tests-ci