run yarn install in common repo

This commit is contained in:
turnoffthiscomputer
2025-03-14 12:07:50 +01:00
parent 559046bf43
commit 5bf310879d

View File

@@ -46,9 +46,11 @@ jobs:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
- name: Install dependencies (common first)
run: |
cd sdk/core
cd common
yarn install --frozen-lockfile
cd ../sdk/core
yarn install --frozen-lockfile
- name: Build package
@@ -76,9 +78,11 @@ jobs:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
- name: Install dependencies (common first)
run: |
cd sdk/qrcode
cd common
yarn install --frozen-lockfile
cd ../sdk/qrcode
yarn install --frozen-lockfile
- name: Build package