Skip to content

Remove callback overloads #141

Remove callback overloads

Remove callback overloads #141

Workflow file for this run

name: Build and test
on: push
jobs:
if: ${{ false }} # disable for now

Check failure on line 4 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
test:
name: Test and lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Node, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install modules
run: |
yarn install --frozen-lockfile
- name: Build
run: |
yarn build
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test
- name: Test generate docs
run: |
yarn docs