Skip to content

Commit 0dc399a

Browse files
authored
☃️remove extra line☃️
1 parent 46e32fd commit 0dc399a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/3-revenge-of-the-automated-testing/4a-jenkins.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,15 @@
2323
npm run lint:fix
2424
```
2525

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.
2727
2828
```groovy
2929
//💅 Lint exercise here
3030
echo '### Running Linting ###'
3131
sh 'npm run lint'
3232
```
3333

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.
3635

3736
```bash
3837
cd /projects/pet-battle

0 commit comments

Comments
 (0)