fix: Avoid use of lerna bootstrap in workflows
This commit is contained in:
parent
582d309aff
commit
07a290d656
6 changed files with 6 additions and 6 deletions
2
.github/workflows/dependabot-sync.yml
vendored
2
.github/workflows/dependabot-sync.yml
vendored
|
@ -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 .
|
||||
|
|
2
.github/workflows/lint.all.yml
vendored
2
.github/workflows/lint.all.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/lint.diff.yml
vendored
2
.github/workflows/lint.diff.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/playwright.yml
vendored
2
.github/workflows/playwright.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/tests.all.yml
vendored
2
.github/workflows/tests.all.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/tests.new-design.yml
vendored
2
.github/workflows/tests.new-design.yml
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue