From aa46f05d2144c230666d0c573ed594a39d917e4c Mon Sep 17 00:00:00 2001 From: Justin Kilpatrick Date: Wed, 13 Apr 2022 22:31:31 -0400 Subject: [PATCH] Add basic CI --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..54866b5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Tests for Althea dash + +on: + push: + branches: [master] + pull_request: + branches: [master] + + +jobs: + build-althea-dash: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build + run: yarn && yarn build + test-althea-dash: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build + run: yarn && yarn test \ No newline at end of file