Skip to content

Documentation Block Definition added full parameter list and fixed a typo #50

Documentation Block Definition added full parameter list and fixed a typo

Documentation Block Definition added full parameter list and fixed a typo #50

Workflow file for this run

# Workflow will run on pull requests
name: Pull Request Test
on:
pull_request:
branches: [master]
jobs:
lint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- run: yarn
- run: yarn lint --fix
# tests are not testing 😭
# test:
# name: Run test
# needs: lint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 20
# - run: yarn
# - run: yarn test:unit