From cd98f2708096d5bbd570ea827387efb553aeaac7 Mon Sep 17 00:00:00 2001 From: Dustin Brett Date: Sat, 9 Jan 2021 22:23:15 -0800 Subject: [PATCH] Added testing action workflow --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 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 00000000..e7bea277 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +name: Tests + +on: push + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install Modules + run: npm install + - name: Run Tests + run: npm test