Skip to content

Merge pull request #271 from 10up/feature/GH-269-WP-6.3-compat-1 #442

Merge pull request #271 from 10up/feature/GH-269-WP-6.3-compat-1

Merge pull request #271 from 10up/feature/GH-269-WP-6.3-compat-1 #442

Workflow file for this run

name: ESLint
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install node v16
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Run JS linting
run: npm run lint:js