diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 03a1f1c8e..254059dcb 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -205,12 +205,12 @@ jobs: id: runtime if: ${{ needs.e2e.result != 'failure' && github.event_name == 'pull_request' }} run: | - ls -l cypress/snapshots/runtimes - mv cypress/snapshots/runtimes cypress/snapshots/runtimes/head - ls -l cypress/snapshots/runtimes - ls -l cypress/snapshots/runtimes/base - ls -l cypress/snapshots/runtimes/head - tree cypress/snapshots/runtimes + ls -l ./snapshots/runtimes + mv ./snapshots/runtimes ./snapshots/runtimes/head + ls -l ./snapshots/runtimes + ls -l ./snapshots/runtimes/base + ls -l ./snapshots/runtimes/head + tree ./snapshots/runtimes npm config set ignore-scripts true pnpm install --frozen-lockfile { diff --git a/scripts/runTime.ts b/scripts/runTime.ts index a1dd18277..d7a4edb69 100644 --- a/scripts/runTime.ts +++ b/scripts/runTime.ts @@ -56,8 +56,8 @@ const percentageDifference = ( }; const main = async () => { - const oldStats = await readStats('./cypress/snapshots/runtimes/base/**/*.csv'); - const newStats = await readStats('./cypress/snapshots/runtimes/head/**/*.csv'); + const oldStats = await readStats('./snapshots/runtimes/base/**/*.csv'); + const newStats = await readStats('./snapshots/runtimes/head/**/*.csv'); const fullData: string[][] = []; const changed: string[][] = []; for (const [fileName, runtimes] of Object.entries(newStats)) {