We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5543087 commit adf93caCopy full SHA for adf93ca
Jenkinsfile-itest
@@ -1,4 +1,7 @@
1
node('docker') {
2
+ environment {
3
+ CI = 'true'
4
+ }
5
stage('Clone') {
6
cleanWs()
7
checkoutInfo = checkout(scm)
package.json
@@ -4,7 +4,7 @@
"author": "iExec",
"license": "Apache-2.0",
"scripts": {
- "prepare": "husky",
+ "prepare": "if [ \"$CI\" != \"true\" ]; then husky; fi",
8
"codegen": "graph codegen subgraph.template.yaml",
9
"test": "npm run codegen && graph test",
10
"test-docker": "npm run codegen && docker run -it --rm -v $(pwd):/matchstick/subgraph rainprotocol/matchstick:main",
0 commit comments