From 6c81ed81a31f8e6ad23a03641ff686b76efba334 Mon Sep 17 00:00:00 2001 From: Lee Byron Date: Fri, 23 Apr 2021 12:03:36 -0700 Subject: [PATCH] Add GH Action for running tests (#859) --- .github/workflows/test.yml | 12 ++++++++++++ 1 file changed, 12 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 000000000..24efb0b9e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,12 @@ +name: Test +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '16.x' + - run: npm ci + - run: npm test