Skip to content

0.9.3

0.9.3 #89

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v1
with:
path: node_modules
key: 14.x-${{ runner.OS }}-build-${{ hashFiles('yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Test TypeScript API
run: yarn test:api