Skip to content

fix typo

fix typo #2

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Prettier
run: npm ci
- name: Run Prettier Check
run: npm run format
- name: Run ESLint Check
run: npm run lint