Skip to content

chore(deps): bump minimatch from 9.0.5 to 9.0.8 in /src/samples #596

chore(deps): bump minimatch from 9.0.5 to 9.0.8 in /src/samples

chore(deps): bump minimatch from 9.0.5 to 9.0.8 in /src/samples #596

Workflow file for this run

name: Run Linter & Formatter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/CODEOWNERS'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: |
package-lock.json
src/samples/package-lock.json
- run: npm ci && (cd src/samples && npm ci)
- run: npm run lint:ci