From a4b6f062045f8502edf9dd8b83cda3c9a6fa075d Mon Sep 17 00:00:00 2001 From: GENTILHOMME Thomas Date: Mon, 23 Mar 2026 21:35:04 +0100 Subject: [PATCH] ci(publish.yml): add missing install of chrome for puppeteer to work --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d7a3ba6..8eb9800 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,8 @@ jobs: # Ensure npm 11.5.1 or later is installed - name: Update npm run: npm install -g npm@latest + - name: Install chromium + run: npx puppeteer browsers install chrome - run: npm install --ignore-scripts - run: npm run build --if-present - run: npm test