From 5a90b321b0598a955abecece8408b63dec1c917d Mon Sep 17 00:00:00 2001 From: Shailesh Kumar Date: Thu, 2 Sep 2021 15:25:31 +0530 Subject: [PATCH] feat: tests to run on GitHub Actions (#2576) --- .github/workflows/tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..a49918f --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,15 @@ +name: Tests +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + -uses: actions/checkout@v2 + -uses: action/setup-node@v2 + with: + nod-version: 14 + -name: install deps + run: npm ci + -name: run tests + run: npm test