Skip to content

Merge pull request #59 from GoogleChromeLabs/add/throttle-parameter #23

Merge pull request #59 from GoogleChromeLabs/add/throttle-parameter

Merge pull request #59 from GoogleChromeLabs/add/throttle-parameter #23

Workflow file for this run

name: Code Linting
on:
push:
branches:
- main
paths:
- '.github/workflows/lint.yml'
- '**.js'
- '**.json'
- '**.mjs'
- '.eslint*'
- '.nvmrc'
- '**/package.json'
- 'package-lock.json'
pull_request:
branches:
- main
- 'feature/**'
paths:
- '.github/workflows/lint.yml'
- '**.js'
- '**.json'
- '**.mjs'
- '.eslint*'
- '.nvmrc'
- '**/package.json'
- 'package-lock.json'
types:
- opened
- reopened
- synchronize
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: styfle/[email protected]
- uses: actions/checkout@v3
- name: Setup Node.js (via .nvmrc)
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: npm
- name: npm install
run: npm ci
- name: Lint
run: npm run lint