Skip to content

Commit cd4e835

Browse files
committed
fix: recursive install
1 parent 0087d1d commit cd4e835

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/coverage.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- run: npm install
17+
- run: npm install:plugins
1718
- uses: artiomtr/[email protected]
1819
with:
1920
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/nodejs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 13.x, 14.x]
12+
node-version: [14.x, 16.x, 18.x]
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- run: npm install
21+
- run: npm install:plugins
2122
- run: npm run lint
2223
- run: npm run build
2324
- run: npm test

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"jsdom-global": "^3.0.2",
8282
"lerna-changelog": "^2.1.0",
8383
"microbundle": "^0.13.0",
84-
"node-sass": "^6.0.1",
84+
"node-sass": "^7.0.1",
8585
"node-sass-chokidar": "^1.5.0",
8686
"npm-run-all": "^4.1.5",
8787
"postcss": "^8.3.0",
@@ -99,7 +99,7 @@
9999
"typescript": "^4.2.4"
100100
},
101101
"scripts": {
102-
"prepare": "find . ! -path '*/node_modules/*' ! -path './package.json' ! -path './tests/dev-server/package.json' -name 'package.json' -execdir npm install \\;",
102+
"install:plugins": "find ./plugins ! -path '*/node_modules/*' ! -path './package.json' -name 'package.json' -execdir npm install \\;",
103103
"clean": "rimraf coverage dist tmp l10n/dist 'plugins/!(node_modules)/dist'",
104104
"prebuild": "npm run clean",
105105
"build": "run-p build:grid build:i18n build:plugins build:themes",

0 commit comments

Comments
 (0)