Skip to content

Add a typescript rule so that array<T>[i] is T | undefined (#181) #255

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

Add a typescript rule so that array<T>[i] is T | undefined (#181) #255

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