Skip to content
Open
13 changes: 8 additions & 5 deletions .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: CI Tests

on:
- pull_request
- push
- merge_group
pull_request:
branches:
- main
- next
push:
merge_group:

env:
CI: true
Expand Down Expand Up @@ -180,7 +183,7 @@ jobs:

integration:
needs: unit
if: contains(fromJSON('["push", "merge_group"]'), github.event_name)
if: contains(fromJSON('["push", "merge_group"]'), github.event_name) || (github.event_name == 'pull_request' && github.base_ref == 'next')
runs-on: ubuntu-22.04

env:
Expand Down Expand Up @@ -247,7 +250,7 @@ jobs:

integration-windows:
needs: unit
if: contains(fromJSON('["push", "merge_group"]'), github.event_name)
if: contains(fromJSON('["push", "merge_group"]'), github.event_name) || (github.event_name == 'pull_request' && github.base_ref == 'next')
runs-on: windows-latest

env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Fixed an issue where hosting deploy allowed publishing to a site in a different project. (#10376)
- Added 'firebase_deploy' and 'firebase_deploy_status' MCP tools.
- Added SSE mode support to `firebase mcp`. To use it, run `firebase mcp --mode=sse --port=3000`, and connect your client on `http://localhost:3000`.
144 changes: 100 additions & 44 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@
"@angular-devkit/architect": "^0.1402.2",
"@angular-devkit/core": "^14.2.2",
"@google/events": "^5.1.1",
"@modelcontextprotocol/ext-apps": "^1.3.2",
"@types/archiver": "^6.0.0",
"@types/async-lock": "^1.4.2",
"@types/body-parser": "^1.17.0",
Expand Down
Loading
Loading