Skip to content

docs(General): Add JSDoc on all exported functions and types #140

docs(General): Add JSDoc on all exported functions and types

docs(General): Add JSDoc on all exported functions and types #140

Workflow file for this run

name: Continuous Integration
on:
pull_request:
types: [opened, edited, synchronize, reopened]
push:
branches:
- main
jobs:
checks:
name: Checks and Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typechecking
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Running tests
run: npm run test