Skip to content

docs: add isLoading and several other improvements #549

docs: add isLoading and several other improvements

docs: add isLoading and several other improvements #549

Workflow file for this run

name: build
on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install, lint
run: |
yarn install --frozen-lockfile
yarn lint --no-fix
- name: tsc
run: |
yarn types:check
- name: test
run: |
yarn test:compat