You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/3-revenge-of-the-automated-testing/4a-jenkins.md
+2-3
Original file line number
Diff line number
Diff line change
@@ -23,16 +23,15 @@
23
23
npm run lint:fix
24
24
```
25
25
26
-
4. Now let's add the linter to the pipeline so on every build it checks our style, extend the `stage{ "Build" }` of the `Jenkinsfile` with the lint task...
26
+
4. Now let's add the linter to the pipeline so on every build it checks our style, extend the `stage{ "Build" }` of the `Jenkinsfile` with the lint task.
27
27
28
28
```groovy
29
29
//💅 Lint exercise here
30
30
echo '### Running Linting ###'
31
31
sh 'npm run lint'
32
32
```
33
33
34
-
5. Push our changes to the repo to trigger a new build
35
-
34
+
5. Push our changes to the repo to trigger a new build.
0 commit comments