Skip to content

Commit 17fe578

Browse files
authored
Merge pull request #162 from patternfly/add_code_editor
fix: add react-code-editor dev dependency
2 parents ad8c174 + 90b5880 commit 17fe578

File tree

7 files changed

+752
-3450
lines changed

7 files changed

+752
-3450
lines changed

.github/workflows/build-lint-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
node_modules
2626
**/node_modules
2727
key: ${{ runner.os }}-npm-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
28-
- run: npm install --frozen-lockfile --legacy-peer-deps
28+
- run: npm install --frozen-lockfile
2929
if: steps.npm-cache.outputs.cache-hit != 'true'
3030
- uses: actions/cache@v4
3131
id: dist
@@ -61,7 +61,7 @@ jobs:
6161
node_modules
6262
**/node_modules
6363
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
64-
- run: npm install --frozen-lockfile --legacy-peer-deps
64+
- run: npm install --frozen-lockfile
6565
if: steps.npm-cache.outputs.cache-hit != 'true'
6666
- uses: actions/cache@v4
6767
id: lint-cache
@@ -99,7 +99,7 @@ jobs:
9999
**/node_modules
100100
~/.cache/Cypress
101101
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
102-
- run: npm install --frozen-lockfile --legacy-peer-deps
102+
- run: npm install --frozen-lockfile
103103
if: steps.npm-cache.outputs.cache-hit != 'true'
104104
- uses: actions/cache@v4
105105
id: dist
@@ -140,7 +140,7 @@ jobs:
140140
**/node_modules
141141
~/.cache/Cypress
142142
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
143-
- run: npm install --frozen-lockfile --legacy-peer-deps
143+
- run: npm install --frozen-lockfile
144144
if: steps.npm-cache.outputs.cache-hit != 'true'
145145
- uses: actions/cache@v4
146146
id: dist
@@ -185,7 +185,7 @@ jobs:
185185
**/node_modules
186186
~/.cache/Cypress
187187
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
188-
- run: npm install --frozen-lockfile --legacy-peer-deps
188+
- run: npm install --frozen-lockfile
189189
if: steps.npm-cache.outputs.cache-hit != 'true'
190190
- uses: actions/cache@v4
191191
id: dist
@@ -225,7 +225,7 @@ jobs:
225225
**/node_modules
226226
~/.cache/Cypress
227227
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
228-
- run: npm install --frozen-lockfile --legacy-peer-deps
228+
- run: npm install --frozen-lockfile
229229
if: steps.npm-cache.outputs.cache-hit != 'true'
230230
- uses: actions/cache@v4
231231
id: dist

.github/workflows/pr-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
path: '**/node_modules'
3535
key: ${{ runner.os }}-npm-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('package-lock.json') }}
36-
- run: npm install --frozen-lockfile --legacy-peer-deps
36+
- run: npm install --frozen-lockfile
3737
if: steps.yarn-cache.outputs.cache-hit != 'true'
3838
- run: npm run build
3939
name: Build data view

0 commit comments

Comments
 (0)