We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e7bc5 commit 9023ef7Copy full SHA for 9023ef7
2 files changed
.github/workflows/deploy-prod.yml
@@ -52,6 +52,13 @@ jobs:
52
env:
53
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
54
55
+ - name: Check if @rumblefishdev/ui installed
56
+ run: |
57
+ if [[ ! -d packages/frontend/node_modules/@rumblefishdev/ui ]]; then
58
+ echo "Error: @rumblefishdev/ui not installed"
59
+ exit 1
60
+ fi
61
+
62
- name: 'Build'
63
run: |
64
npm run types:build
.github/workflows/deploy-stage.yml
@@ -60,12 +60,6 @@ jobs:
exit 1
fi
- - name: ls frontend modules
- run: |
65
- ls -ls packages/frontend/node_modules
66
- echo '#########'
67
- ls -ls packages/frontend/node_modules/@rumblefishdev
68
-
69
70
71
0 commit comments