Skip to content

Commit

Permalink
Merge pull request #120 from zowe/struga0258-patch-2
Browse files Browse the repository at this point in the history
Update node version
  • Loading branch information
1000TurquoisePogs committed May 30, 2024
2 parents 85dfb4a + caa272d commit 3c116ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: '[Prep 3] Setup Node'
uses: actions/setup-node@v2
with:
node-version: 10.24.1
node-version: 16.15.0

- name: '[Prep 4] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
Expand Down
3 changes: 2 additions & 1 deletion nodeServer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Hello World message",
"scripts": {
"build": "tsc",
"start": "tsc --watch"
"start": "tsc --watch",
"test": "exit 0"
},
"dependencies": {},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion webClient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"start": "webpack --progress --colors --watch",
"build": "webpack --progress --colors",
"i18n": "ng-xi18n -p tsconfig.i18n.json --i18nFormat=xlf --outFile=messages.xlf && xliffmerge -p xliffmerge.json",
"lint": "tslint -c tslint.json \"./**/*.ts\""
"lint": "tslint -c tslint.json \"./**/*.ts\"",
"test": "exit 0"
},
"private": true,
"devDependencies": {
Expand Down

0 comments on commit 3c116ea

Please sign in to comment.