Skip to content

Commit

Permalink
#207 check markdown links
Browse files Browse the repository at this point in the history
Also move dockerfile-lint and shellcheck out of the integration test.

Signed-off-by: Jeremias Weber <jeremias.weber@cloudogu.com>
  • Loading branch information
jelemux committed Mar 30, 2023
1 parent 7b0fb3e commit e4d938a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,19 @@ parallel(
git.clean("")
}

stage('Check Markdown Links') {
Markdown markdown = new Markdown(this)
markdown.check()
}

stage('Lint') {
lintDockerfile()
}

stage('Shellcheck') {
shellCheck("resources/startup.sh")
}

stage('Build') {
setupMaven(mvn)
// Tui-Editor 1.4.10 has git:// dependencies.
Expand Down Expand Up @@ -105,14 +118,6 @@ parallel(
git.clean("")
}

stage('Lint') {
lintDockerfile()
}

stage('Shellcheck') {
shellCheck("resources/startup.sh")
}

try {
stage('Provision') {
ecoSystem.provision("/dogu")
Expand Down

0 comments on commit e4d938a

Please sign in to comment.