ci: add workflow

This commit is contained in:
metonym 2021-09-29 11:46:11 -07:00
commit 5aa8a0f8de

14
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies and build the library
run: |
yarn
yarn build:api
yarn build:lib
- name: Validate TypeScript definitions
run: yarn test