Skip to content

fix(Markers): marker line is superimposed on the label #107

fix(Markers): marker line is superimposed on the label

fix(Markers): marker line is superimposed on the label #107

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [ main ]
jobs:
lint-and-type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npx eslint "src/**/*.{js,jsx,ts,tsx}"
- name: Check TypeScript types
run: npx tsc --noEmit