Skip to content

Bump the npm group across 1 directory with 2 updates #154

Bump the npm group across 1 directory with 2 updates

Bump the npm group across 1 directory with 2 updates #154

Workflow file for this run

name: YAML Lint
on:
pull_request:
jobs:
yaml_lint:
name: Run yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v44
id: changed-files
with:
files: |
**.yaml
**.yml
- uses: reviewdog/action-yamllint@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
fail_on_error: true
filter_mode: nofilter # added (default), diff_context, file, nofilter
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check