Skip to content

Fix issue with the callback being called too often #30

Fix issue with the callback being called too often

Fix issue with the callback being called too often #30

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: npm i
- name: Run lint
run: npm run lint