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.
This commit is contained in:
Mario Zechner 2026-01-13 01:07:48 +01:00
parent 9c694e36f8
commit ea860751fd

View file

@ -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