File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments