From 964bce8728c1cd42ffc34dc07e1456a326a6f7dc Mon Sep 17 00:00:00 2001 From: Nicolas Merget <104347736+nmerget@users.noreply.github.com> Date: Tue, 30 Jan 2024 09:40:40 +0100 Subject: [PATCH] fix: issue with update-playwright.js (#2151) --- .github/scripts/update-playwright.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/scripts/update-playwright.js b/.github/scripts/update-playwright.js index e3f15b93462..4e66153823a 100644 --- a/.github/scripts/update-playwright.js +++ b/.github/scripts/update-playwright.js @@ -31,7 +31,7 @@ const updatePlaywright = () => { { from: `oldPlaywrightVersion = '${oldPlaywrightVersion}'`, to: `oldPlaywrightVersion = '${version}'`, - files: ['scripts/update-playwright.js'] + files: ['.github/scripts/update-playwright.js'] } ]; @@ -41,5 +41,4 @@ const updatePlaywright = () => { return 'Success'; }; - -updatePlaywright(); +export default updatePlaywright;