diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 00000000..0aa7ba88 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Install + run: yarn install + - name: Build + run: yarn build + - name: Test + run: yarn test \ No newline at end of file