Skip to content

fix(deps): update dependency eslint-plugin-jsdoc to v50.6.1 #721

fix(deps): update dependency eslint-plugin-jsdoc to v50.6.1

fix(deps): update dependency eslint-plugin-jsdoc to v50.6.1 #721

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
test:
strategy:
matrix:
os: [macOS-latest, windows-latest]
node: [22]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies for Renovate/Dependabot
if: github.actor == 'renovate[bot]' || github.actor == 'dependabot[bot]'
run: npm install --no-package-lock --legacy-peer-deps
- name: Install dependencies for normal PRs
if: github.actor != 'renovate[bot]' && github.actor != 'dependabot[bot]'
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint:ci
- name: Test
run: npm run test