Skip to content

Commit 629a770

Browse files
committed
fix: cloud build adjusted
1 parent fe5e8ac commit 629a770

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

.github/workflows/node-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/setup-node@v1
3434
with:
3535
node-version: ${{ matrix.node-version }}
36-
- run: rm -rf package.json && mv wdio-package.json package.json && npm install
36+
- run: rm -rf package.json && mv wdio-package.json package.json && npm install && npm run install-react-mui
3737
#- name: "Check if deployment is done"
3838
#env:
3939
# VERCEL_TOKEN: ${{secrets.VERCEL_TOKEN}}

.github/workflows/node.js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
- run: npm install --force
32+
- run: npm run install-react-mui
3233
- run: npm run build
3334
- run: npx jest --env=jsdom --config=jest.config.js --coverage --ci --updateSnapshot --detectOpenHandles --forceExit
3435
- name: Codecov

.github/workflows/prerelease.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
with:
1818
node-version: 14
1919
- run: npm install
20+
- run: npm run install-react-mui
2021
- run: npm run build
2122
- run: npx jest --env=jsdom --config=jest.config.js --coverage --ci --updateSnapshot --detectOpenHandles --forceExit
2223

@@ -31,6 +32,7 @@ jobs:
3132
node-version: 14
3233
registry-url: https://registry.npmjs.org/
3334
- run: npm install
35+
- run: npm run install-react-mui
3436
- run: npm run build
3537
- run: npm install -g json
3638
- run: json -I -f package.json -e 'this.scripts.postinstall="echo done"'
@@ -49,6 +51,7 @@ jobs:
4951
node-version: 14
5052
registry-url: https://npm.pkg.github.com/
5153
- run: npm install
54+
- run: npm run install-react-mui
5255
- run: npm run build
5356
- run: npm install -g json
5457
- run: json -I -f package.json -e 'this.name="@vip-git/react-jsonschema-form-material-ui"'

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
with:
1818
node-version: 14
1919
- run: npm install
20+
- run: npm run install-react-mui
2021
- run: npm run build
2122
- run: npx jest --env=jsdom --config=jest.config.js --coverage --ci --updateSnapshot --detectOpenHandles --forceExit
2223

@@ -31,6 +32,7 @@ jobs:
3132
node-version: 14
3233
registry-url: https://registry.npmjs.org/
3334
- run: npm install
35+
- run: npm run install-react-mui
3436
- run: npm run build
3537
- run: npx tsc index.js --declaration --allowJs --emitDeclarationOnly --skipLibCheck --outDir .
3638
- run: npm install -g json
@@ -50,6 +52,7 @@ jobs:
5052
node-version: 14
5153
registry-url: https://npm.pkg.github.com/
5254
- run: npm install
55+
- run: npm run install-react-mui
5356
- run: npm run build
5457
- run: npx tsc index.js --declaration --allowJs --emitDeclarationOnly --skipLibCheck --outDir .
5558
- run: npm install -g json

0 commit comments

Comments
 (0)