Skip to content

Workflow file for this run

name: Lint and TypeScript Checks
on:
push:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install
- name: Run lint-staged for ESLint and TypeScript checks
run: npx lint-staged