Skip to content

Commit

Permalink
fix(CICD): test cat package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Jun 25, 2024
1 parent 82fc91e commit 0db7923
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- name: Publish version
run: |
jq '.version = "${{ needs.semantic.outputs.version }}"' package.json > "$tmp" && mv "$tmp" package.json
cat package.json
npm install
npm run prepackage
npm run package
Expand Down
4 changes: 2 additions & 2 deletions node_scripts/install_back.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (process.platform === "win32"){
}

child.stdout.on("data",function(data){
console.log("Data: " + data);
console.log(data);
});
child.stderr.on("data",function(data){
console.log("error: " + data);
console.log(data);
});
child.on("exit",function(){
console.log("Exit script");
Expand Down
4 changes: 2 additions & 2 deletions node_scripts/install_viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (process.platform === "win32"){
}

child.stdout.on("data",function(data){
console.log("Data: " + data);
console.log(data);
});
child.stderr.on("data",function(data){
console.log("error: " + data);
console.log(data);
});
child.on("exit",function(){
console.log("Exit script");
Expand Down

0 comments on commit 0db7923

Please sign in to comment.