diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91cc9b0bf..5a3d23495 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,14 +8,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - fetch-depth: 1 # Necessary so we have commit history to compare to + fetch-depth: 0 # Necessary so we have commit history to compare to - name: package-a changed in last commit? id: changedAction uses: Trampoline-CX/action-turbo-changed@v1 with: workspace: '*' - from: HEAD^1 + from: HEAD^1 # Check for changes since previous commit (feel free to put a branch name instead in the form of origin/) # Do something more meaningful here, like push to NPM, do heavy computing, etc. - name: Validate Action Output