From b57a013ca2b43d8651eda4941644f808148ab25d Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Thu, 8 Jul 2021 13:45:17 +0100 Subject: [PATCH] Create main.yml --- .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 000000000..3d1853f63 --- /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