Skip to content

Merge branch 'development' into portal-gc #193

Merge branch 'development' into portal-gc

Merge branch 'development' into portal-gc #193

Workflow file for this run

name: "Javascript lint"
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 17
- name: Install standard
run: |
npm install standard --location=global
- name: Lint with standard
run: |
standard **/static/**/js/**.js || true