Skip to content

Commit f37eeaf

Browse files
committed
try run export EXPERIMENTAL_MODE=true
1 parent 37e3770 commit f37eeaf

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test-changed-firestore.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ jobs:
115115
- name: Bump Node memory limit
116116
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
117117
- 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
119121
- name: Run tests
120122
run: cd packages/firestore && yarn run ${{ matrix.test-name }}
121-
env:
122-
EXPERIMENTAL_MODE: true
123123

124124
compat-test-firefox:
125125
name: Test Firestore Compatible on Firefox
@@ -182,12 +182,13 @@ jobs:
182182
- name: Bump Node memory limit
183183
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
184184
- 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
186188
- name: Run tests
187189
run: cd packages/firestore && xvfb-run yarn run ${{ matrix.test-name }}
188190
env:
189191
BROWSERS: 'Firefox'
190-
EXPERIMENTAL_MODE: true
191192

192193
# A job that fails if any required job in the test matrix fails,
193194
# to be used as a required check for merging.

0 commit comments

Comments
 (0)