mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 18:01:22 +00:00
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:
parent
9c694e36f8
commit
ea860751fd
1 changed files with 5 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue