Skip to content

Update contributor details #223

Update contributor details

Update contributor details #223

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