Skip to content

Commit

Permalink
Add jenkinsfile for itest
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyjams committed Oct 17, 2024
1 parent 3672b1b commit a096630
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
run: npm run test
- name: Test build
run: npm run build
- name: Run integration tests
run: npm run itest:all
# - name: Run integration tests
# run: npm run itest:all
14 changes: 14 additions & 0 deletions Jenkinsfile-itest
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
node('docker') {
stage('Clean Workspace') {
cleanWs()
}

stage('Checkout scm') {
checkout scm
}

stage('Run integration tests') {
sh 'npm ci'
sh 'npm run itest:all'
}
}

0 comments on commit a096630

Please sign in to comment.