23 lines
No EOL
424 B
YAML
23 lines
No EOL
424 B
YAML
name: JS Code Linting
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint-js:
|
|
name: Lint JS
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the git repository
|
|
uses: actions/checkout@v2
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
- name: npm install
|
|
run: npm install
|
|
- name: Lint JS
|
|
run: npm run lint:js |