Skip to content

Commit 2c82bed

Browse files
committed
feat (project): remove workflow npm ci command
1 parent 1ad4915 commit 2c82bed

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-release-assets.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/setup-node@v4
4242
with:
4343
node-version-file: 'package.json'
44-
- run: npm ci
44+
- run: npm install
4545
- run: npm run build
4646
working-directory: ./wp-dsfr-blocks
4747

@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/setup-node@v4
5151
with:
5252
node-version-file: 'package.json'
53-
- run: npm ci
53+
- run: npm install
5454
- run: npm run build
5555
working-directory: ./wp-dsfr-theme
5656

@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
node-version-file: 'package.json'
6262
- run: |
63-
npm ci
63+
npm install
6464
npm run plugin-zip
6565
working-directory: "./wp-dsfr-blocks"
6666
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
node-version-file: 'package.json'
7272
- run: |
73-
npm ci
73+
npm install
7474
npm run plugin-zip
7575
working-directory: "./wp-dsfr-theme"
7676

.github/workflows/release-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/setup-node@v4
4343
with:
4444
node-version-file: 'package.json'
45-
- run: npm ci
45+
- run: npm install
4646
- run: npm run build
4747
working-directory: ./wp-dsfr-blocks
4848

@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/setup-node@v4
5252
with:
5353
node-version-file: 'package.json'
54-
- run: npm ci
54+
- run: npm install
5555
- run: npm run build
5656
working-directory: ./wp-dsfr-theme
5757

0 commit comments

Comments
 (0)