fix(deps): update dependency eslint-plugin-jsdoc to v50.6.1 #721
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |