Skip to content

ok

ok #114

Workflow file for this run

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
run: yarn build:packages
# run unit tests
- name: Jest Annotations & Coverage
uses: mattallty/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
test-command: 'yarn test'