Skip to content

Add GitHub features analysis and implementation roadmap #1024

Add GitHub features analysis and implementation roadmap

Add GitHub features analysis and implementation roadmap #1024

Workflow file for this run

name: CI — Typecheck & Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
typecheck-and-lint:
name: Typecheck & Lint
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22.x']
steps:
- uses: actions/checkout@v4
with:
# fetch full history to be consistent with other workflows
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Typecheck (tsc)
run: npx tsc --noEmit --pretty
- name: Lint (eslint)
run: npx eslint "react/**/*.{js,jsx,ts,tsx}"