Skip to content

Commit 519eea5

Browse files
authored
Merge pull request #3648 from relative-ci/upgrade-storybook
Upgrade storybook to v7
2 parents ef15df6 + 403435a commit 519eea5

File tree

9 files changed

+11664
-22648
lines changed

9 files changed

+11664
-22648
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
node-version-file: ".nvmrc"
2626
cache: ${{ steps.cache.outputs.PACKAGE }}
2727

28+
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452
2829
- name: Install dependencies
29-
run: npm ci
30+
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu
3031

3132
- name: Build
3233
run: npm run build
@@ -67,8 +68,9 @@ jobs:
6768
node-version-file: ".nvmrc"
6869
cache: ${{ steps.cache.outputs.PACKAGE }}
6970

71+
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452
7072
- name: Install dependencies
71-
run: npm ci
73+
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu
7274

7375
- name: Download build files
7476
uses: actions/download-artifact@v3
@@ -97,8 +99,9 @@ jobs:
9799
node-version-file: ".nvmrc"
98100
cache: ${{ steps.cache.outputs.PACKAGE }}
99101

102+
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452
100103
- name: Install dependencies
101-
run: npm ci
104+
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu
102105

103106
- name: Download build files
104107
uses: actions/download-artifact@v3
@@ -127,8 +130,9 @@ jobs:
127130
node-version-file: ".nvmrc"
128131
cache: ${{ steps.cache.outputs.PACKAGE }}
129132

133+
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452
130134
- name: Install dependencies
131-
run: npm ci
135+
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu
132136

133137
- name: Download build files
134138
uses: actions/download-artifact@v3
@@ -267,8 +271,9 @@ jobs:
267271
cache: ${{ steps.cache.outputs.PACKAGE }}
268272
registry-url: 'https://registry.npmjs.org'
269273

270-
- name: Install monorepo dependencies
271-
run: npm ci
274+
# Workaround npm/nx optional install issue - https://github.com/nrwl/nx/issues/15452
275+
- name: Install dependencies
276+
run: npm ci && npm install --no-save @nx/nx-linux-x64-gnu
272277

273278
- name: Download build
274279
uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)