e6a3e5c3ea
* 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
16 lines
344 B
YAML
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
|