We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b963633 commit 0bbd8faCopy full SHA for 0bbd8fa
1 file changed
.github/workflows/reassurePerfTests.yml
@@ -24,22 +24,6 @@ jobs:
24
with:
25
node-version-file: '.nvmrc'
26
27
- - name: Get common ancestor commit
28
- run: |
29
- git fetch origin main
30
- common_ancestor=$(git merge-base "${{ github.sha }}" origin/main)
31
- echo "COMMIT_HASH=$common_ancestor" >> "$GITHUB_ENV"
32
-
33
- - name: Clean up deleted files
34
35
- DELETED_FILES=$(git diff --name-only --diff-filter=D "$COMMIT_HASH" "${{ github.sha }}")
36
- for file in $DELETED_FILES; do
37
- if [ -n "$file" ]; then
38
- rm -f "$file"
39
- echo "Deleted file: $file"
40
- fi
41
- done
42
43
- name: Run Reassure baseline tests
44
shell: bash
45
run: |
0 commit comments