1
0
Fork 0

fix: Avoid use of lerna bootstrap in workflows

This commit is contained in:
joostdecock 2023-06-10 13:51:36 +02:00
parent 582d309aff
commit 07a290d656
6 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ jobs:
- name: Reconfigure - name: Reconfigure
run: node --experimental-json-modules --no-warnings ./scripts/reconfigure.mjs run: node --experimental-json-modules --no-warnings ./scripts/reconfigure.mjs
- name: Bootstrap - name: Bootstrap
run: npx lerna bootstrap run: yarn install
- name: Commit Changes - name: Commit Changes
run: | run: |
git add . git add .

View file

@ -33,7 +33,7 @@ jobs:
key: node_modules-${{ hashFiles('yarn.lock') }} key: node_modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies - name: Install dependencies
if: steps.cache_node_modules.outputs.cache-hit != 'true' if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: npx lerna bootstrap run: yarn install
env: env:
CI: true CI: true
- name: Buil all - name: Buil all

View file

@ -39,7 +39,7 @@ jobs:
key: node_modules-${{ hashFiles('yarn.lock') }} key: node_modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies - name: Install dependencies
if: steps.cache_node_modules.outputs.cache-hit != 'true' if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: npx lerna bootstrap run: yarn install
env: env:
CI: true CI: true
- name: Buil all - name: Buil all

View file

@ -25,7 +25,7 @@ name: Playwright Tests
# key: node_modules-${{ hashFiles('yarn.lock') }} # key: node_modules-${{ hashFiles('yarn.lock') }}
# - name: Install dependencies # - name: Install dependencies
# if: steps.cache_node_modules.outputs.cache-hit != 'true' # if: steps.cache_node_modules.outputs.cache-hit != 'true'
# run: npx lerna bootstrap # run: yarn install
# - name: Install Playwright Browsers # - name: Install Playwright Browsers
# run: yarn playwright install --with-deps # run: yarn playwright install --with-deps
# - name: Run Playwright tests # - name: Run Playwright tests

View file

@ -41,7 +41,7 @@ jobs:
key: node_modules-${{ hashFiles('yarn.lock') }} key: node_modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies - name: Install dependencies
if: steps.cache_node_modules.outputs.cache-hit != 'true' if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: npx lerna bootstrap run: yarn install
env: env:
CI: true CI: true
- name: Run all tests - name: Run all tests

View file

@ -38,7 +38,7 @@ jobs:
lookup-only: true lookup-only: true
- name: Install dependencies - name: Install dependencies
if: steps.diff.outputs.files && steps.cache_node_modules.outputs.cache-hit != 'true' if: steps.diff.outputs.files && steps.cache_node_modules.outputs.cache-hit != 'true'
run: npx lerna bootstrap run: yarn install
env: env:
CI: true CI: true