Skip to content

Add a scroll event handler that refreshes the view on scroll. #4

Add a scroll event handler that refreshes the view on scroll.

Add a scroll event handler that refreshes the view on scroll. #4

Workflow file for this run

---
name: Lint Code Base
defaults:
run:
shell: bash
on:
push:
pull_request:
jobs:
eslint:
name: Lint TypeScript and JavaScript files with eslint
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Lint files with eslint
run: npm run lint:check