Skip to content

Bump eslint-plugin-jsdoc from 48.2.4 to 48.2.5 #1454

Bump eslint-plugin-jsdoc from 48.2.4 to 48.2.5

Bump eslint-plugin-jsdoc from 48.2.4 to 48.2.5 #1454

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: yarn --frozen-lockfile
- name: ESLint
run: yarn lint:eslint
- name: Check unused exports
run: yarn lint:unused