Skip to content

Bump eslint from 8.57.0 to 9.5.0 #22

Bump eslint from 8.57.0 to 9.5.0

Bump eslint from 8.57.0 to 9.5.0 #22

Workflow file for this run

name: ESLint
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
NODE_VERSION: 18
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: Lint
run: npm run lint