Skip to content

UTH-164: review status and housing type types #406

UTH-164: review status and housing type types

UTH-164: review status and housing type types #406

Workflow file for this run

name: Test, lint and check TS
on:
pull_request:
branches:
- main
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:ci
- name: Run linting
run: npm run lint
- name: Check TS
run: npm run ts:ci