Skip to content

Improve detection precision 2 #51

Improve detection precision 2

Improve detection precision 2 #51

Workflow file for this run

name: Lint and Format
on: [push, pull_request]
jobs:
typescript:
name: Typescript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Typescript
run: npm run tsc
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: ESLint
run: npm run lint
# prettier:
# name: Prettier
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 20
# - run: npm ci
# - name: Prettier
# run: npm run format-check