donal
2018-04-23 8c2b86b04efd65b43daa64d8d3a1e1d3a9605837
FIX - broken layout
1 files modified
3 ■■■■ changed files
exercises/5-non-functionals-strike-back/README.md 3 ●●●● patch | view | raw | blame | history
exercises/5-non-functionals-strike-back/README.md
@@ -197,11 +197,10 @@
        }
```
3. We will add a new step to our `stage("node-build"){ }` section to lint the Javascript code. After the `npm install`; add a command to run the linting!
3. We will add a new step to our `stage("node-build"){ }` section to lint the Javascript code. After the `npm install`; add a command to run the linting.
```groovy
echo '### Install deps ###'
sh 'npm install'
echo '### Running linting ###'
sh 'npm run lint:ci'
```