Skip to content

Commit 46dfa4e

Browse files
committed
no firestore
1 parent df87cac commit 46dfa4e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
id: set-output
4545
run: echo "CHANGED=true" >> "$GITHUB_OUTPUT";
4646
- name: Archive build
47-
if: ${{ !cancelled() }}
47+
if: ${{ !cancelled() && steps.build.outcome != 'success' }}
4848
run: |
4949
tar -cf build.tar --exclude="\.git" .
5050
gzip build.tar
5151
- name: Upload build archive
52-
if: ${{ !cancelled() }}
52+
if: ${{ !cancelled() && steps.build.outcome != 'success' }}
5353
uses: actions/upload-artifact@v3
5454
with:
5555
name: build.tar.gz

packages/firestore/test/integration/api/database.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,6 @@ apiDescribe('Database', persistence => {
831831
expect(snap.data()).to.deep.equal(changedData);
832832
// This event could be a metadata change for fromCache as well.
833833
// We comment this line out to reduce flakiness.
834-
835834
// TODO(b/295872012): Figure out a way to check for all scenarios.
836835
// expect(snap.metadata.hasPendingWrites).to.be.false;
837836
});

0 commit comments

Comments
 (0)