File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed
Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -126,12 +126,22 @@ jobs:
126126 restore-keys : |
127127 ${{ runner.os }}-nextjs-
128128
129- - name : Install Dependencies (if necessary)
129+ - name : Install Dependencies
130130 working-directory : src/frontend
131131 run : |
132132 pnpm install --frozen-lockfile --prefer-offline
133133
134- - name : Run Build with Cache
135- working-directory : ${{ github.workspace }}
134+ - name : Check Turbo Installation
135+ run : pnpm list turbo
136+
137+ - name : Run Build with Cache (Web)
138+ if : matrix.package == 'web'
139+ working-directory : apps/web
140+ run : |
141+ pnpm exec turbo build --filter=web --parallel
142+
143+ - name : Run Build with Cache (@workspace/ui)
144+ if : matrix.package == '@workspace/ui'
145+ working-directory : packages/ui
136146 run : |
137- pnpm run turbo build --filter=${{ matrix.package }} --parallel
147+ pnpm exec turbo build --filter=@workspace/ui --parallel
You can’t perform that action at this time.
0 commit comments