Skip to content

Bump minimatch from 3.1.2 to 3.1.5 in the npm_and_yarn group across 1 directory #105

Bump minimatch from 3.1.2 to 3.1.5 in the npm_and_yarn group across 1 directory

Bump minimatch from 3.1.2 to 3.1.5 in the npm_and_yarn group across 1 directory #105

Workflow file for this run

name: Lint
on:
push:
branches:
- main
paths:
- '.github/workflows/lint.yml'
- 'src/resources/assets/**'
- 'package.json'
- 'package-lock.json'
pull_request:
paths:
- '.github/workflows/lint.yml'
- 'src/resources/assets/**'
- 'package.json'
- 'package-lock.json'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set registry authentication token
run: echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> .npmrc
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint