Skip to content

Add a typescript rule so that array<T>[i] is T | undefined #246

Add a typescript rule so that array<T>[i] is T | undefined

Add a typescript rule so that array<T>[i] is T | undefined #246

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run lint
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run typecheck
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run coverage
buildcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run build