chore: run additional compilation variants (#2823)
Co-authored-by: Valentin Marchaud <contact@vmarchaud.fr>
This commit is contained in:
parent
2cb620d9c9
commit
8182dab513
|
|
@ -76,6 +76,8 @@ jobs:
|
||||||
- name: Build 🔧
|
- name: Build 🔧
|
||||||
run: |
|
run: |
|
||||||
npm run compile
|
npm run compile
|
||||||
|
# run additional compilation variants
|
||||||
|
npx lerna run compile
|
||||||
|
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
run: npm run test:browser
|
run: npm run test:browser
|
||||||
|
|
@ -111,6 +113,8 @@ jobs:
|
||||||
- name: Build 🔧
|
- name: Build 🔧
|
||||||
run: |
|
run: |
|
||||||
npm run compile
|
npm run compile
|
||||||
|
# run additional compilation variants
|
||||||
|
npx lerna run compile
|
||||||
|
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
run: npm run test:webworker
|
run: npm run test:webworker
|
||||||
|
|
@ -192,6 +196,8 @@ jobs:
|
||||||
working-directory: experimental
|
working-directory: experimental
|
||||||
run: |
|
run: |
|
||||||
npm run compile
|
npm run compile
|
||||||
|
# run additional compilation variants
|
||||||
|
npx lerna run compile
|
||||||
|
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
working-directory: experimental
|
working-directory: experimental
|
||||||
|
|
@ -231,6 +237,8 @@ jobs:
|
||||||
working-directory: experimental
|
working-directory: experimental
|
||||||
run: |
|
run: |
|
||||||
npm run compile
|
npm run compile
|
||||||
|
# run additional compilation variants
|
||||||
|
npx lerna run compile
|
||||||
|
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
working-directory: experimental
|
working-directory: experimental
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"extends": "./tsconfig.base.json",
|
"extends": "./tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es5"
|
"target": "es5",
|
||||||
|
"downlevelIteration": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue