Skip to content

Clean up some typescript warnings. #5

Clean up some typescript warnings.

Clean up some typescript warnings. #5

Workflow file for this run

name: Tests
on:
push: # Branch pushes only, not tags
branches:
- "**"
workflow_call: # Allow other workflows to call this one
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run lint
check:
name: Check
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run check
unit:
name: Unit Tests
needs: [check]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run test:unit