23 lines
459 B
YAML
23 lines
459 B
YAML
name: Linting for Network Explorer (eslint/prettier)
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'explorer/**'
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: explorer
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: custom-runner-linux
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: npm install
|
|
- name: Run ESLint
|
|
# GitHub should automatically annotate the PR
|
|
run: npm run lint |