Skip to content

Draft PR to test CI/test workflows #58

Draft PR to test CI/test workflows

Draft PR to test CI/test workflows #58

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