Skip to content

chore(deps-dev): bump eslint from 8.57.1 to 9.11.1 #287

chore(deps-dev): bump eslint from 8.57.1 to 9.11.1

chore(deps-dev): bump eslint from 8.57.1 to 9.11.1 #287

Workflow file for this run

name: Linter
on: [push, pull_request]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v4
with:
node-version: "14.x"
- name: Cache NPM dependencies
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache
restore-keys: |
${{ runner.OS }}-npm-cache
- name: Install Dependencies
run: npm install
- name: Lint
run: |
npm run eslint
env:
CI: true