From c83a1182bd7ca4c1d1a2fa62f141f7b91f004a39 Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Wed, 19 Mar 2025 16:00:55 +0100 Subject: [PATCH] CI: add Chrome to PATH --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bf05e68af..86fc559f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,4 +17,6 @@ jobs: - name: ๐Ÿ” lint run: npx _lint - name: ๐Ÿงช tests - run: npm test + run: | + export PATH=`pwd`/node_modules/puppeteer/.local-chromium/linux-901912/chrome-linux:$PATH + npm test