Skip to content

Commit 7ce365b

Browse files
authored
Update workflows to run 'npm install' before 'npm ci' (#1416)
## Related PRs - #1407 - #1409 - #1410 - #1415 After this PR is merged into the master branch, we expect each dependency update task mentioned above to succeed when it is retried.
1 parent 8efc346 commit 7ce365b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Pages
2525
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
2626
- name: Install dependencies
27-
run: npm ci
27+
run: npm install && npm ci
2828

2929
- name: Build API Docs
3030
run: export NODE_OPTIONS=--openssl-legacy-provider; npm run apidocs

.github/workflows/generate-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
architecture: x64
3535

3636
- name: Install Dependency
37-
run: npm ci
37+
run: npm install && npm ci
3838

3939
# Generate codes
4040
- name: Generate code

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
node-version: ${{ matrix.node }}
4040
cache: 'npm'
4141
- name: Install Dependency
42-
run: npm ci
42+
run: npm install && npm ci
4343
- name: Test generator
4444
run: cd generator; mvn package; cd ..
4545
- name: Generate code

0 commit comments

Comments
 (0)