From 516ace85b40358eba51e030afd6254a8e5b64ce3 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 22 Jul 2025 22:08:03 +0100 Subject: [PATCH] fix: skipOnCI --- src/PendingCalls/TestCall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PendingCalls/TestCall.php b/src/PendingCalls/TestCall.php index 102f1640..05bc2f59 100644 --- a/src/PendingCalls/TestCall.php +++ b/src/PendingCalls/TestCall.php @@ -340,7 +340,7 @@ final class TestCall // @phpstan-ignore-line 'NETLIFY', 'NOW_BUILDER', ] as $env) { - if (isset($_ENV[$env])) { + if (getenv('GITHUB_ACTIONS') !== false) { return $this->skip(sprintf( 'This test is skipped on [CI].', ));