From c0b658e6d6a1d77fae2a0806f796aa59ff687676 Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Sat, 28 Mar 2026 22:50:18 -0300 Subject: [PATCH] fix: update npm ci to npm install for building libraries and mark submodules as dirty --- .github/workflows/frontend-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/frontend-tests.yml b/.github/workflows/frontend-tests.yml index a5660df..a23cf70 100644 --- a/.github/workflows/frontend-tests.yml +++ b/.github/workflows/frontend-tests.yml @@ -47,15 +47,15 @@ jobs: # Build avr8js (referenced as file: dep in frontend/package.json) - name: Build avr8js - run: cd wokwi-libs/avr8js && npm ci && npm run build + run: cd wokwi-libs/avr8js && npm install && npm run build # Build rp2040js (referenced via vite alias to dist/esm) - name: Build rp2040js - run: cd wokwi-libs/rp2040js && npm ci && npm run build + run: cd wokwi-libs/rp2040js && npm install && npm run build # Build wokwi-elements (referenced as file: dep in frontend/package.json) - name: Build wokwi-elements - run: cd wokwi-libs/wokwi-elements && npm ci && npm run build + run: cd wokwi-libs/wokwi-elements && npm install && npm run build # Install frontend deps (picks up file: references to avr8js and wokwi-elements) - name: Install frontend dependencies