Skip to content

Tests and automatic type generation #63

Tests and automatic type generation

Tests and automatic type generation #63

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
# setup
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install package dependencies
run: npm install
# goal
- name: Check TypeScript types
run: npm run check
- name: Check code formatting
run: npm run format