tldraw/.github/workflows/main.yml
Steve Ruiz e6a3e5c3ea
[big chore] restore core to monorepo (#287)
* move core into repo, apps into apps folder, update tests

* Update scripts for build:core

* improve scripts

* remove noise from www

* Update .gitignore

* Fix focus bug

* add ci test script

* Update main.yml
2021-11-18 13:09:18 +00:00

16 lines
344 B
YAML

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# install modules
- name: Install modules
run: yarn
# build
- name: Build Packages
run: yarn build:packages
# run unit tests
- name: Jest Annotations & Coverage
run: yarn test:ci