From ea860751fd15531594526069478c9a3c48ecc489 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 13 Jan 2026 01:07:48 +0100 Subject: [PATCH] Fix CI: install missing parcel watcher Linux binding package-lock.json was generated on macOS and only includes darwin bindings. The Linux glibc binding is needed by tailwindcss. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef5b18da..3ff22a73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,11 @@ jobs: sudo ln -s $(which fdfind) /usr/local/bin/fd - name: Install dependencies - run: npm ci + run: | + npm ci + # package-lock.json was generated on macOS and is missing Linux native bindings + # Install the parcel watcher binding needed by tailwindcss + npm install --no-save --force @parcel/watcher-linux-x64-glibc@2.5.1 - name: Build run: npm run build