From 5aa8a0f8deb30942b09a1301669b5e18f75ddfaa Mon Sep 17 00:00:00 2001 From: metonym Date: Wed, 29 Sep 2021 11:46:11 -0700 Subject: [PATCH] ci: add workflow --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..252b92b1 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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