Skip to content

Bump eslint from 8.49.0 to 8.57.0 #461

Bump eslint from 8.49.0 to 8.57.0

Bump eslint from 8.49.0 to 8.57.0 #461

Workflow file for this run

name: Eslint
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Cache Dependencies
id: yarn_cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.yarn_cache.outputs.cache-hit != 'true'
run: yarn install --prefer-offline
- name: Eslint Check
run: yarn lint