Skip to content

Commit 87f2a1d

Browse files
Merge pull request #495 from rumblefishdev/upgrade-rumblefishdev-ui-package-version
Upgrade rumblefishdev UI package version to `0.1.26`
2 parents b20ede6 + 55d471a commit 87f2a1d

9 files changed

Lines changed: 6102 additions & 3273 deletions

File tree

.github/workflows/ci-tests.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/setup-node@master
1616
with:
17-
node-version: ${{ env.NODE_VERSION }}
17+
node-version: 20
1818
registry-url: 'https://npm.pkg.github.com'
1919
scope: "@rumblefishdev"
2020

@@ -27,13 +27,26 @@ jobs:
2727
restore-keys: |
2828
${{ runner.OS }}-npm-cache-
2929
30-
- name: Install dependencies
30+
- name: Install root dependencies
3131
run: |
3232
npm i
33+
npm i @rumblefishdev/ui --legacy-peer-deps
3334
node_modules/.bin/lerna bootstrap
35+
env:
36+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37+
38+
- name: Install @rumblefishdev/ui
39+
run: |
40+
npm i @rumblefishdev/ui --legacy-peer-deps
3441
env:
3542
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3643

44+
- name: Install monorepo dependencies
45+
run: |
46+
node_modules/.bin/lerna bootstrap
47+
env:
48+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
49+
3750
- name: Build types
3851
run: |
3952
npm run types:build

.github/workflows/deploy-prod.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- created
77

88
env:
9-
NODE_VERSION: 18.16.0
9+
NODE_VERSION: 20
1010
ENV: prod
1111
AWS_EC2_METADATA_DISABLED: true
1212

@@ -48,6 +48,7 @@ jobs:
4848
- name: Install dependencies
4949
run: |
5050
npm i
51+
npm i @rumblefishdev/ui --legacy-peer-deps
5152
node_modules/.bin/lerna bootstrap
5253
env:
5354
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/deploy-stage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- created
77

88
env:
9-
NODE_VERSION: 18.16.0
9+
NODE_VERSION: 20
1010
ENV: stage
1111
AWS_EC2_METADATA_DISABLED: true
1212

@@ -48,6 +48,7 @@ jobs:
4848
- name: Install dependencies
4949
run: |
5050
npm i
51+
npm i @rumblefishdev/ui --legacy-peer-deps
5152
node_modules/.bin/lerna bootstrap
5253
env:
5354
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)