File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ jobs:
179179 uses : actions/download-artifact@v4
180180 with :
181181 name : tav-build-cache-${{ github.run_number }}
182+ path : .nx
182183 # Note: `Install` step created a `.nx` folder. We should replace it
183184 # with the packed one from `build-and-cache` job
184185 # - name: Unpack artifacts and Build
Original file line number Diff line number Diff line change 2828 - name : Upload Build Artifacts
2929 uses : actions/upload-artifact@v4
3030 with :
31- name : tav -build-cache-${{ github.run_number }}
31+ name : tests -build-cache-${{ github.run_number }}
3232 path : .nx
3333 include-hidden-files : true
3434 if-no-files-found : error
@@ -192,6 +192,7 @@ jobs:
192192 uses : actions/download-artifact@v4
193193 with :
194194 name : tests-build-cache-${{ github.run_number }}
195+ path : .nx
195196 # Note: `Install` step created a `.nx` folder. We should replace it
196197 # with the packed one from `build-and-cache` job
197198 # - name: Unpack artifacts and Build
@@ -238,10 +239,13 @@ jobs:
238239 uses : actions/download-artifact@v4
239240 with :
240241 name : tests-build-cache-${{ github.run_number }}
242+ path : .nx
241243 # Note: `Install` step created a `.nx` folder. We should replace it
242244 # with the packed one from `build-and-cache` job
243- - name : Unpack artifacts and Build
244- run : rm -rf .nx && tar -xvf nx-pack.tar.gz && npm run compile
245+ # - name: Unpack artifacts and Build
246+ # run: rm -rf .nx && tar -xvf nx-pack.tar.gz && npm run compile
247+ - name : Build
248+ run : npm run compile
245249 - name : Unit tests
246250 run : npm run test:browser
247251 - name : Report Coverage
You can’t perform that action at this time.
0 commit comments