Skip to content

Merge branch 'main' into private-staging #155

Merge branch 'main' into private-staging

Merge branch 'main' into private-staging #155

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Lint
run: npm run lint