From a306f735f9c518567719bd6489112133a6f3f2af Mon Sep 17 00:00:00 2001 From: montehurd Date: Thu, 10 Apr 2025 13:30:44 -0600 Subject: [PATCH] Avoid nested runner script command --- .github/workflows/push.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d7fcbc8..4663c1c 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -25,9 +25,7 @@ jobs: - name: Install dependencies run: npm ci - name: Run visual regression - shell: 'script -q -e -c "bash {0}"' env: SCENARIO_FILTER: "Skip all scenarios" NONINTERACTIVE: 1 - run: | - script -e -c "./pixel.js runAll --priority 3" \ No newline at end of file + run: ./pixel.js runAll --priority 3 \ No newline at end of file