From fcb8a6d2b07ec546b2981cb129a1ddce17f33c99 Mon Sep 17 00:00:00 2001 From: Wouter Groeneveld Date: Fri, 5 Mar 2021 11:28:01 +0100 Subject: [PATCH] Create main.yml enable yarn test --- .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