From 157b0ce596ef375da4e0147306be2c11def790ef Mon Sep 17 00:00:00 2001 From: Camila Andrea Gonzalez Williamson Date: Thu, 10 Dec 2020 08:21:22 +0100 Subject: [PATCH] Add tests on Github actions --- .github/workflows/continuos-integration.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/continuos-integration.yml diff --git a/.github/workflows/continuos-integration.yml b/.github/workflows/continuos-integration.yml new file mode 100644 index 0000000..314665b --- /dev/null +++ b/.github/workflows/continuos-integration.yml @@ -0,0 +1,14 @@ +name: continuos-integration + +on: [push, pull_request] + +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + - run: yarn + - run: yarn build + - run: yarn test +