[IA-4839] [DO NOT MERGE] Terra on Azure (ToA) base jupyter docker image #1168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint CI | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint on node ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: [8, 10, 12] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: linting | |
run: | | |
cd terra-jupyter-base/custom | |
npm install | |
node_modules/.bin/eslint --fix *.js |