Skip to content

v0.14

v0.14 #206

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
- develop
jobs:
buildAndTest:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Build
run: yarn build
- name: Test
run: yarn test --watchAll=false