go back to bootstrapping everything
This commit is contained in:
parent
0cbc5426d5
commit
ff6ab8c1e3
1 changed files with 11 additions and 2 deletions
13
.github/workflows/tests.new-design.yml
vendored
13
.github/workflows/tests.new-design.yml
vendored
|
@ -21,9 +21,18 @@ jobs:
|
|||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v3
|
||||
id: cache_node_modules
|
||||
with:
|
||||
# caching node_modules
|
||||
path: node_modules
|
||||
key: node_modules-${{ hashFiles('yarn.lock') }}
|
||||
- name: Install dependencies
|
||||
run: npm install --workspaces=false
|
||||
working-directory: ./packages/new-design
|
||||
if: steps.cache_node_modules.outputs.cache-hit != 'true'
|
||||
run: npx lerna bootstrap
|
||||
env:
|
||||
CI: true
|
||||
- name: Prebuild i18n
|
||||
run: yarn i18n-only
|
||||
working-directory: ./packages/new-design
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue