Skip to content

Expand Support To Unbound #69

Expand Support To Unbound

Expand Support To Unbound #69

Workflow file for this run

name: Enforce Types + Linting
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install NodeJS
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm ci
- name: Type Check
run: npm run typecheck
- name: ESLint
run: npm run lint:ci