From bf5b98027934ae7fee9af1c6af941df560552793 Mon Sep 17 00:00:00 2001 From: Taras Perun Date: Tue, 2 Jan 2024 16:03:15 +0100 Subject: [PATCH] undo reassurePerformanceTests --- .github/workflows/reassurePerformanceTests.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/reassurePerformanceTests.yml b/.github/workflows/reassurePerformanceTests.yml index 2c837b18e416..932ade958c85 100644 --- a/.github/workflows/reassurePerformanceTests.yml +++ b/.github/workflows/reassurePerformanceTests.yml @@ -21,35 +21,19 @@ jobs: run: | git config --global user.email "test@test.com" git config --global user.name "Test" - - name: Run performance testing script shell: bash run: | set -e BASELINE_BRANCH=${BASELINE_BRANCH:="main"} git fetch origin "$BASELINE_BRANCH" --no-tags --depth=1 - - # Backup current patches - cp -r ./patches/ ./patches_backup/ - git switch "$BASELINE_BRANCH" - rm -rf node_modules - npm cache clean --force npm install --force npx reassure --baseline - git switch --force --detach - git merge --no-commit --allow-unrelated-histories "$BASELINE_BRANCH" -X ours - - # Restore patches from backup - rm -rf ./patches/ - cp -r ./patches_backup/ ./patches/ - - rm -rf node_modules - npm cache clean --force npm install --force npx reassure --branch - - name: Read output.json id: reassure uses: juliangruber/read-file-action@v1