Skip to content

feat: add and update api examples and demo (#82) #215

feat: add and update api examples and demo (#82)

feat: add and update api examples and demo (#82) #215

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
# Lint the code
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn build:api # Need to build api so that the demo app has a reference to the built code
- run: yarn lint
# Test the code
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn test