Skip to content

Bump eslint-plugin-jsdoc from 46.3.0 to 46.4.1 #1157

Bump eslint-plugin-jsdoc from 46.3.0 to 46.4.1

Bump eslint-plugin-jsdoc from 46.3.0 to 46.4.1 #1157

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@v3
- uses: actions/setup-node@v3
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