Skip to content

Commit 1a6f774

Browse files
committed
chore: fixed download path
1 parent 1b0560f commit 1a6f774

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test-all-versions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/unit-test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
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

0 commit comments

Comments
 (0)