Skip to content

Convert to Vite from CRA #105

Convert to Vite from CRA

Convert to Vite from CRA #105

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- "src/**/*.js"
- "src/**/*.jsx"
- "src/**/*.ts"
- "src/**/*.tsx"
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run EsLint
uses: sibiraj-s/action-eslint@v3
with:
eslint-args: "src/**/*.{ts,tsx} --max-warnings=0"
extensions: "ts,tsx"
annotations: true