Skip to content

Commit f4d0d0c

Browse files
committed
update ci & node versions
1 parent 97bc904 commit f4d0d0c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/hpo-web-development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
- name: Configure Node
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 23.11.0
17+
node-version: 24.5.0
1818
cache: 'npm'
1919

2020
- name: Lint, Test, Build
2121
run: |
2222
npm install
2323
npm run lint
24-
npm run testci
24+
npm run test:ci

.github/workflows/hpo-web.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
- name: Configure Node
2525
uses: actions/setup-node@v3
2626
with:
27-
node-version: 23.11.0
27+
node-version: 24.5.0
2828
cache: 'npm'
2929

3030
- name: Lint, Test, Build
3131
run: |
3232
npm install
3333
npm run lint
34-
npm run testci
35-
npm run buildProd --if-present
34+
npm run test:ci
35+
npm run build:prod --if-present
3636
3737
- name: Set Project Version
3838
run: echo "PROJECT_VERSION=$(cat package.json | jq -r '.version')" >> "$GITHUB_ENV"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"scripts": {
66
"ng": "ng",
77
"start": "ng serve --configuration=development",
8-
"startProd": "ng serve --configuration=production",
8+
"start:prod": "ng serve --configuration=production",
99
"build": "ng build --configuration=development",
10-
"buildProd": "ng build --configuration=production",
10+
"build:prod": "ng build --configuration=production",
1111
"test": "jest",
1212
"test:watch": "jest --watch",
1313
"test:ci": "jest --ci --coverage --watchAll=false",

0 commit comments

Comments
 (0)