You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/unit-test.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -177,13 +177,13 @@ jobs:
177
177
- name: Set MySQL variables
178
178
run: mysql --user=root --password=${MYSQL_ROOT_PASSWORD} --host=${MYSQL_HOST} --port=${MYSQL_PORT} -e "SET GLOBAL log_output='TABLE'; SET GLOBAL general_log = 1;" mysql
179
179
- name: Install
180
-
run: npm ci && rm -rf .nx
180
+
run: npm ci
181
181
- name: Download Build Artifacts
182
182
uses: actions/download-artifact@v4
183
183
with:
184
184
name: tests-build-cache-${{ github.run_number }}
185
-
- name: Check dowloaded artifacts
186
-
run: ls -la
185
+
# Note: `Install` step created a `.nx` folder. We should replace it
186
+
# with the packed one from `build-and-cache` job
187
187
- name: Unpack artifacts and Build
188
188
run: rm -rf .nx && tar -xvf nx-pack.tar.gz && npm run compile
0 commit comments