Skip to content

Merge pull request #441 from 10up/fix/429-update-cypress-utils #803

Merge pull request #441 from 10up/fix/429-update-cypress-utils

Merge pull request #441 from 10up/fix/429-update-cypress-utils #803

Workflow file for this run

name: ESLint
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
permissions:
contents: read
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: install node v16
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Run JS linting
run: npm run lint:js