Skip to content

Bump @typescript-eslint/eslint-plugin from 5.59.8 to 5.60.1 #133

Bump @typescript-eslint/eslint-plugin from 5.59.8 to 5.60.1

Bump @typescript-eslint/eslint-plugin from 5.59.8 to 5.60.1 #133

Workflow file for this run

name: Node
on:
pull_request:
push:
branches:
- master
- "releases/*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: cache
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run lint