Skip to content

Commit ab60daa

Browse files
author
Paul Von Schrottky
committed
Temporary: create new npm cache
1 parent b66df7d commit ab60daa

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/create-block.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333

3434
- name: npm install, build, format and lint
3535
run: |
36-
npm ci
36+
npm install
3737
npm run test:create-block

.github/workflows/end2end-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Npm install and build
3939
run: |
40-
npm ci
40+
npm install
4141
npm run build
4242
4343
- name: Install WordPress

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Npm install
3333
run: |
34-
npm ci
34+
npm install
3535
3636
- name: Compare performance with trunk
3737
if: github.event_name == 'pull_request'

.github/workflows/rnmobile-android-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
node-version: ${{ matrix.node }}
3232
cache: npm
3333

34-
- run: npm ci
34+
- run: npm install
3535

3636
- name: Restore Gradle cache
3737
uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6

.github/workflows/rnmobile-ios-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
node-version: ${{ matrix.node }}
3232
cache: npm
3333

34-
- run: npm ci
34+
- run: npm install
3535

3636
- name: Prepare build cache key
3737
run: find package-lock.json packages/react-native-editor/ios packages/react-native-aztec/ios packages/react-native-bridge/ios -type f -print0 | sort -z | xargs -0 shasum | tee ios-checksums.txt

.github/workflows/storybook-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: npm
2727

2828
- name: Install Dependencies
29-
run: npm ci
29+
run: npm install
3030

3131
- name: Build Storybook
3232
run: npm run storybook:build

.github/workflows/unit-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# source files with `babel-jest`. Some packages have their own custom
4343
# build tasks, however. These must be run.
4444
run: |
45-
npm ci
45+
npm install
4646
npx lerna run build
4747
4848
- name: Running the tests
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Npm install and build
6969
run: |
70-
npm ci
70+
npm install
7171
npm run build
7272
7373
- name: Install WordPress
@@ -104,7 +104,7 @@ jobs:
104104
# source files with `babel-jest`. Some packages have their own custom
105105
# build tasks, however. These must be run.
106106
run: |
107-
npm ci
107+
npm install
108108
npx lerna run build
109109
110110
- name: Running the tests

0 commit comments

Comments
 (0)