Skip to content

Commit 8182dab

Browse files
chore: run additional compilation variants (#2823)
Co-authored-by: Valentin Marchaud <[email protected]>
1 parent 2cb620d commit 8182dab

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/unit-test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ jobs:
7676
- name: Build 🔧
7777
run: |
7878
npm run compile
79+
# run additional compilation variants
80+
npx lerna run compile
7981
8082
- name: Unit tests
8183
run: npm run test:browser
@@ -111,6 +113,8 @@ jobs:
111113
- name: Build 🔧
112114
run: |
113115
npm run compile
116+
# run additional compilation variants
117+
npx lerna run compile
114118
115119
- name: Unit tests
116120
run: npm run test:webworker
@@ -192,6 +196,8 @@ jobs:
192196
working-directory: experimental
193197
run: |
194198
npm run compile
199+
# run additional compilation variants
200+
npx lerna run compile
195201
196202
- name: Unit tests
197203
working-directory: experimental
@@ -231,6 +237,8 @@ jobs:
231237
working-directory: experimental
232238
run: |
233239
npm run compile
240+
# run additional compilation variants
241+
npx lerna run compile
234242
235243
- name: Unit tests
236244
working-directory: experimental

tsconfig.es5.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
4-
"target": "es5"
4+
"target": "es5",
5+
"downlevelIteration": true
56
}
67
}

0 commit comments

Comments
 (0)