Skip to content

Bump the development-dependencies group with 3 updates #275

Bump the development-dependencies group with 3 updates

Bump the development-dependencies group with 3 updates #275

Workflow file for this run

name: ESLint
on:
push:
branches: [main]
pull_request:
branches: [main, '[0-9]+-[0-9]+-*']
workflow_call:
inputs:
ref:
description: 'Checkout a different git ref instead of the SHA from the GitHub event.'
required: false
type: string
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
check-latest: true
- name: Install dependencies
run: yarn install
- uses: CatChen/eslint-suggestion-action@v3
with:
targets: 'src'
fail-check: ${{ github.event_name == 'workflow_call' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}