Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
- name: Install dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
cd packages/frontend
npm config set legacy-peer-deps=true
cd ../..
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,17 @@ jobs:
- name: Install dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
cd packages/frontend
npm config set legacy-peer-deps=true
cd ../..
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Check if @rumblefishdev/ui installed
run: |
if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
if [[ ! -d node_modules/@rumblefishdev/ui ]]; then
echo "Error: @rumblefishdev/ui not installed"
exit 1
fi
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,18 @@ jobs:
- name: Install dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
cd packages/frontend
npm config set legacy-peer-deps=true
cd ../..
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}


- name: Check if @rumblefishdev/ui installed
run: |
if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
if [[ ! -d node_modules/@rumblefishdev/ui ]]; then
echo "Error: @rumblefishdev/ui not installed"
exit 1
fi
Expand Down
Loading
Loading