Skip to content

Bump eslint from 8.52.0 to 8.54.0 #24

Bump eslint from 8.52.0 to 8.54.0

Bump eslint from 8.52.0 to 8.54.0 #24

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3.1.0
with:
node-version: 16
- name: Install dependencies
run: npm i
- name: Lint checks
run: npm run lint:ci