Skip to content

chore(deps): update dependency eslint to v9 #2262

chore(deps): update dependency eslint to v9

chore(deps): update dependency eslint to v9 #2262

Workflow file for this run

name: linter
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
linter:
# Name the Job
name: Lint code base
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: Run linter
run: |
yarn install
yarn lint