Skip to content

chore(deps): bump lint-staged from 10.5.3 to 15.2.0 #16

chore(deps): bump lint-staged from 10.5.3 to 15.2.0

chore(deps): bump lint-staged from 10.5.3 to 15.2.0 #16

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16
- 14
- 12
name: Test on Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm run test