We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea18ee commit 219180eCopy full SHA for 219180e
1 file changed
.github/workflows/deploy-stage.yml
@@ -48,11 +48,18 @@ jobs:
48
- name: Install dependencies
49
run: |
50
npm i
51
- npm install @rumblefishdev/ui
52
node_modules/.bin/lerna bootstrap
53
env:
54
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
+
56
+ - name: Check if @rumblefishdev/ui installed
57
+ run: |
58
+ if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
59
+ echo "Error: @rumblefishdev/ui not installed"
60
+ exit 1
61
+ fi
62
63
- name: ls frontend modules
64
65
ls -ls packages/frontend/node_modules
0 commit comments