Skip to content

Bump the npm_and_yarn group across 1 directory with 6 updates #471

Bump the npm_and_yarn group across 1 directory with 6 updates

Bump the npm_and_yarn group across 1 directory with 6 updates #471

Workflow file for this run

name: Linting
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node and npm cache
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Node dependencies
run: npm ci --no-optional
- name: Get updated JS files
id: changed-files
uses: tj-actions/changed-files@v42
with:
files: |
**/*.js
- name: Run JS linting
if: ${{ steps.changed-files.outputs.any_changed == 'true' }}
run: ./node_modules/.bin/10up-toolkit lint-js ${{ steps.changed-files.outputs.all_changed_files }}