Skip to content

Commit 2e2c40a

Browse files
authored
Merge pull request #1002 from grid-js/pipeline-fix
fix: recursive install
2 parents 0087d1d + c3b8163 commit 2e2c40a

File tree

6 files changed

+98
-2991
lines changed

6 files changed

+98
-2991
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 run install:plugins
1718
- uses: artiomtr/[email protected]
1819
with:
1920
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/main.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12+
- run: npm install
13+
- run: npm run install:plugins
1214
- uses: preactjs/compressed-size-action@v2
1315
with:
1416
repo-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: [12.x, 14.x, 16.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 run install:plugins
2122
- run: npm run lint
2223
- run: npm run build
2324
- run: npm test

l10n/index.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,19 @@ import idID from './id_ID';
99
import jaJP from './ja_JP';
1010
import cnCN from './cn_CN';
1111
import arSA from './ar_SA';
12+
import deDE from './de_DE';
1213

13-
export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, jaJP, cnCN, arSA };
14+
export {
15+
esES,
16+
frFR,
17+
itIT,
18+
ptPT,
19+
trTR,
20+
koKR,
21+
ruRU,
22+
idID,
23+
jaJP,
24+
cnCN,
25+
arSA,
26+
deDE,
27+
};

0 commit comments

Comments
 (0)