forked from UsingBlockchain/yourdlt-wallet
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from dhealthproject/next
v1.3.1: Security, Bridge updates, Branding
- Loading branch information
Showing
147 changed files
with
4,623 additions
and
4,651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
pipeline { | ||
agent any | ||
stages { | ||
stage('Download dependencies') { | ||
steps { | ||
sh 'npm install' | ||
sh 'cp public/plugins/plugins.empty.js public/plugins/plugins.js' | ||
} | ||
} | ||
|
||
stage('Run linter checks') { | ||
steps { | ||
sh 'npm run lint' | ||
} | ||
} | ||
|
||
stage('Build software') { | ||
steps { | ||
sh 'npm run build' | ||
} | ||
} | ||
|
||
stage('Run unit tests') { | ||
steps { | ||
sh 'npm run test' | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.