Skip to content

code owner

code owner #4

Workflow file for this run

name: Lint and test
on:
pull_request:
push:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- name: Run tests and collect coverage
run: npm run test:coverage