Skip to content

Bump eslint-plugin-jest from 28.9.0 to 28.10.0 (#579) #222

Bump eslint-plugin-jest from 28.9.0 to 28.10.0 (#579)

Bump eslint-plugin-jest from 28.9.0 to 28.10.0 (#579) #222

Workflow file for this run

name: Run Linter
on:
push:
branches: [ develop ]
pull_request:
types: [ opened, synchronize, reopened ]
paths:
- 'src/**'
- 'tests/**'
- 'package.json'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: 21.x
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install --immutable
- name: Run ESLint on changed files
uses: tj-actions/eslint-changed-files@v25
with:
token: ${{ secrets.GITHUB_TOKEN }}