Skip to content

Commit b457e4e

Browse files
committed
chore: try to use lerna bootstrap with lock file
1 parent b029d91 commit b457e4e

File tree

5 files changed

+11062
-23
lines changed

5 files changed

+11062
-23
lines changed

.github/workflows/check.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ jobs:
2525
uses: actions/setup-node@v1
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
-
29-
name: Cache Node Modules
30-
if: ${{ matrix.node-version == 14 }}
31-
uses: actions/cache@v2
32-
with:
33-
path: |
34-
node_modules
35-
build
36-
key: cache-${{ github.run_id }}-v14
37-
-
38-
name: Upgrade NPM to have workspaces support
39-
run: npm i -G npm@latest
28+
# -
29+
# name: Cache Node Modules
30+
# if: ${{ matrix.node-version == 14 }}
31+
# uses: actions/cache@v2
32+
# with:
33+
# path: |
34+
# node_modules
35+
# build
36+
# key: cache-${{ github.run_id }}-v14
37+
# -
38+
# name: Upgrade NPM to have workspaces support
39+
# run: npm i -G npm
4040
-
4141
name: Install Dependencies
42-
run: npm install && npx lerna link convert
42+
run: npm install
4343
-
4444
name: Run Tests
4545
run: npm test
@@ -57,13 +57,13 @@ jobs:
5757
uses: actions/setup-node@v1
5858
with:
5959
node-version: 14
60-
-
61-
name: Load Cache
62-
uses: actions/cache@v2
63-
with:
64-
path: |
65-
node_modules
66-
build
67-
key: cache-${{ github.run_id }}-v14
60+
# -
61+
# name: Load Cache
62+
# uses: actions/cache@v2
63+
# with:
64+
# path: |
65+
# node_modules
66+
# build
67+
# key: cache-${{ github.run_id }}-v14
6868
-
6969
run: npm run lint

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ logs
1111
pids
1212
.idea
1313
yarn.lock
14-
package-lock.json
14+
packages/*/package-lock.json

lerna.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"useWorkspaces": true,
65
"version": "0.7.7"
76
}

0 commit comments

Comments
 (0)