From c1035cd8f0918e855eb000296e2514c3d264c316 Mon Sep 17 00:00:00 2001 From: wgroeneveld Date: Sun, 7 Mar 2021 20:47:13 +0100 Subject: [PATCH] auto-run tests on github --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 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..3d1853f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: yarn + - name: Run tests + run: yarn test