Skip to content

Bump serve-static and express #333

Bump serve-static and express

Bump serve-static and express #333

Workflow file for this run

name: Javascript Presubmit
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install npm packages
run: npm install
working-directory: ubg
- name: Lint
# Run ESLint on diffed JS files. Do not run if there are no diffs.
run: git diff --relative --diff-filter=ACM --name-only origin/master HEAD -- . ':!node_modules' | grep -E "(.*)\.(jsx|js)$" | xargs --no-run-if-empty npx eslint
working-directory: ubg