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
run: node --experimental-json-modules --no-warnings ./scripts/reconfigure.mjs
- name: Bootstrap
run: npx lerna bootstrap
run: yarn install
- name: Commit Changes
run: |
git add .

View file

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

View file

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

View file

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

View file

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

View file

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