2019-11-28 11:11:07 +01:00
|
|
|
name: jshint
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: apt
|
|
|
|
run: sudo apt-get install -y nodejs npm
|
|
|
|
|
|
|
|
- name: jshint install
|
2019-11-28 11:15:29 +01:00
|
|
|
run: sudo npm i -g jshint
|
2019-11-28 11:11:07 +01:00
|
|
|
|
|
|
|
- name: jshint run
|
2019-11-28 11:12:02 +01:00
|
|
|
run: cd static/js && jshint
|