Skip to content

Commit 0b68835

Browse files
Merge branch 'master' into dependabot/npm_and_yarn/uuid-11.1.0
2 parents 3a5556b + f861260 commit 0b68835

12 files changed

Lines changed: 1048 additions & 227 deletions

File tree

.github/actions/send-email/package-lock.json

Lines changed: 184 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [18.x, 20.x, 22.x]
12+
node-version: [18.x, 20.x, 22.x, 24.x]
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -30,4 +30,4 @@ jobs:
3030
run: |
3131
npm install -g firebase-tools@11.30.0
3232
firebase emulators:exec --project fake-project-id --only auth,database,firestore \
33-
'npx mocha \"test/integration/{auth,database,firestore}.spec.ts\" --slow 5000 --timeout 20000 --require ts-node/register'
33+
'npx mocha test/integration/auth.spec.ts test/integration/database.spec.ts test/integration/firestore.spec.ts --slow 5000 --timeout 20000 --require ts-node/register'

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
npm install -g firebase-tools@11.30.0
5656
firebase emulators:exec --project fake-project-id --only auth,database,firestore \
57-
'npx mocha \"test/integration/{auth,database,firestore}.spec.ts\" --slow 5000 --timeout 20000 --require ts-node/register'
57+
'npx mocha test/integration/auth.spec.ts test/integration/database.spec.ts test/integration/firestore.spec.ts --slow 5000 --timeout 20000 --require ts-node/register'
5858
5959
- name: Run integration tests
6060
run: ./.github/scripts/run_integration_tests.sh

etc/firebase-admin.app.api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ export interface FirebaseError {
8383
toJSON(): object;
8484
}
8585

86-
// @public (undocumented)
86+
// @public
8787
export function getApp(appName?: string): App;
8888

89-
// @public (undocumented)
89+
// @public
9090
export function getApps(): App[];
9191

9292
// @public
@@ -97,7 +97,7 @@ export interface GoogleOAuthAccessToken {
9797
expires_in: number;
9898
}
9999

100-
// @public (undocumented)
100+
// @public
101101
export function initializeApp(options?: AppOptions, appName?: string): App;
102102

103103
// @public

0 commit comments

Comments
 (0)