File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -115,11 +115,11 @@ jobs:
115
115
- name : Bump Node memory limit
116
116
run : echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
117
117
- name : Test setup and yarn install
118
- run : cp config/ci.config.json config/project.json
118
+ run : |
119
+ export EXPERIMENTAL_MODE=true
120
+ cp config/ci.config.json config/project.json
119
121
- name : Run tests
120
122
run : cd packages/firestore && yarn run ${{ matrix.test-name }}
121
- env :
122
- EXPERIMENTAL_MODE : true
123
123
124
124
compat-test-firefox :
125
125
name : Test Firestore Compatible on Firefox
@@ -182,12 +182,13 @@ jobs:
182
182
- name : Bump Node memory limit
183
183
run : echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
184
184
- name : Test setup and yarn install
185
- run : cp config/ci.config.json config/project.json
185
+ run : |
186
+ export EXPERIMENTAL_MODE=true
187
+ cp config/ci.config.json config/project.json
186
188
- name : Run tests
187
189
run : cd packages/firestore && xvfb-run yarn run ${{ matrix.test-name }}
188
190
env :
189
191
BROWSERS : ' Firefox'
190
- EXPERIMENTAL_MODE : true
191
192
192
193
# A job that fails if any required job in the test matrix fails,
193
194
# to be used as a required check for merging.
You can’t perform that action at this time.
0 commit comments