Skip to content

Specify new VO quick nav setting for j and shift+j (#1022) #46

Specify new VO quick nav setting for j and shift+j (#1022)

Specify new VO quick nav setting for j and shift+j (#1022) #46

Workflow file for this run

name: Lint JS
on:
push:
paths:
- "**/*.js"
- "package*.json"
- ".eslintrc.json"
- ".github/workflows/js-lint.yml"
branches-ignore:
- "dependabot/**"
pull_request:
paths:
- "**/*.js"
- "package*.json"
- ".eslintrc.json"
- ".github/workflows/js-lint.yml"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint