Skip to content

fixed the layout shift issue #81

fixed the layout shift issue

fixed the layout shift issue #81

Workflow file for this run

name: eslint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Setup Node.js environment
uses: actions/setup-node@v4.1.0
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Run eslint
run: npm run lint