Skip to content

Commit eef45d9

Browse files
committed
update CD workflows
1 parent 1362302 commit eef45d9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.devops/dev-CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ pool:
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
15-
versionSpec: '18.x'
15+
versionSpec: '22.x'
1616
displayName: 'Install Node.js'
1717

1818
- script: |
19-
npm install
19+
npm ci
2020
displayName: 'npm install'
2121

2222
- script: |

.devops/prod-CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ pool:
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
15-
versionSpec: '18.x'
15+
versionSpec: '22.x'
1616
displayName: 'Install Node.js'
1717

1818
- script: |
19-
npm install
19+
npm ci
2020
displayName: 'npm install'
2121

2222
- script: |

.devops/uat-CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ pool:
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
15-
versionSpec: '18.x'
15+
versionSpec: '22.x'
1616
displayName: 'Install Node.js'
1717

1818
- script: |
19-
npm install
19+
npm ci
2020
displayName: 'npm install'
2121

2222
- script: |

0 commit comments

Comments
 (0)