Skip to content

Commit e2c7afe

Browse files
committed
test(wtr): run all the flavors and see what happens
1 parent 1c3e183 commit e2c7afe

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

.github/workflows/web-test-runner.yml

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,41 @@ jobs:
5151
# region: us
5252

5353
- run: yarn test
54-
- run: yarn test:hydration
54+
- run: yarn test || true
55+
- run: DISABLE_SYNTHETIC=1 yarn test || true
56+
- run: LEGACY_BROWSERS=1 yarn test || true
57+
- run: FORCE_NATIVE_SHADOW_MODE_FOR_TEST=1 yarn test || true
58+
- run: DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 yarn test || true
59+
- run: DISABLE_DETACHED_REHYDRATION=1 yarn test || true
60+
- run: DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 DISABLE_SYNTHETIC=1 yarn test || true
61+
- run: DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 DISABLE_DETACHED_REHYDRATION=1 yarn test || true
62+
- run: API_VERSION=58 yarn test || true
63+
- run: API_VERSION=58 DISABLE_SYNTHETIC=1 yarn test || true
64+
- run: API_VERSION=59 yarn test || true
65+
- run: API_VERSION=59 DISABLE_SYNTHETIC=1 yarn test || true
66+
- run: API_VERSION=60 yarn test || true
67+
- run: API_VERSION=60 DISABLE_SYNTHETIC=1 yarn test || true
68+
- run: API_VERSION=61 yarn test || true
69+
- run: API_VERSION=61 DISABLE_SYNTHETIC=1 yarn test || true
70+
- run: API_VERSION=62 yarn test || true
71+
- run: API_VERSION=62 DISABLE_SYNTHETIC=1 yarn test || true
72+
- run: DISABLE_SYNTHETIC_SHADOW_SUPPORT_IN_COMPILER=1 DISABLE_SYNTHETIC=1 yarn test || true
73+
- run: DISABLE_SYNTHETIC_SHADOW_SUPPORT_IN_COMPILER=1 DISABLE_SYNTHETIC=1 DISABLE_STATIC_CONTENT_OPTIMIZATION=1 yarn test || true
74+
- run: ENABLE_ARIA_REFLECTION_GLOBAL_POLYFILL=1 yarn test || true
75+
- run: ENABLE_ARIA_REFLECTION_GLOBAL_POLYFILL=1 DISABLE_SYNTHETIC=1 yarn test || true
76+
- run: DISABLE_STATIC_CONTENT_OPTIMIZATION=1 yarn test || true
77+
- run: DISABLE_STATIC_CONTENT_OPTIMIZATION=1 DISABLE_SYNTHETIC=1 yarn test || true
78+
- run: NODE_ENV_FOR_TEST=production yarn test || true
79+
- run: NODE_ENV_FOR_TEST=production DISABLE_SYNTHETIC=1 yarn test || true
80+
- run: ENGINE_SERVER=1 yarn test:hydration || true
81+
- run: ENGINE_SERVER=1 ENABLE_SYNTHETIC_SHADOW_IN_HYDRATION=1 yarn test:hydration || true
82+
- run: ENGINE_SERVER=1 NODE_ENV_FOR_TEST=production yarn test:hydration || true
83+
- run: ENGINE_SERVER=1 DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 yarn test:hydration || true
84+
- run: ENGINE_SERVER=1 DISABLE_STATIC_CONTENT_OPTIMIZATION=1 yarn test:hydration || true
85+
- run: ENGINE_SERVER=1 DISABLE_DETACHED_REHYDRATION=1 yarn test:hydration || true
86+
- run: ENGINE_SERVER=1 DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 DISABLE_DETACHED_REHYDRATION=1 yarn test:hydration || true
87+
- run: yarn test:hydration || true
88+
- run: ENABLE_SYNTHETIC_SHADOW_IN_HYDRATION=1 yarn test:hydration || true
89+
- run: NODE_ENV_FOR_TEST=production yarn test:hydration || true
90+
- run: DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE=1 yarn test:hydration || true
91+
- run: DISABLE_STATIC_CONTENT_OPTIMIZATION=1 yarn test:hydration || true

0 commit comments

Comments
 (0)