Skip to content

chore(deps): update dependency eslint-plugin-jsdoc to v48 #642

chore(deps): update dependency eslint-plugin-jsdoc to v48

chore(deps): update dependency eslint-plugin-jsdoc to v48 #642

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run lint
test:
name: test - Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: a9b5f5309fca859927c465620f73b934bdf5fd02f80e38cec0066d389807f742
with:
coverageCommand: npm run coverage