From 28ad7bbd9a9ee073c8f1c6cbb964d8c8dc1423b9 Mon Sep 17 00:00:00 2001 From: Guzze13 <152192194+Guzze13@users.noreply.github.com> Date: Sat, 9 Dec 2023 13:00:14 -0600 Subject: [PATCH 1/5] Delete .github/workflows directory Signed-off-by: Guzze13 <152192194+Guzze13@users.noreply.github.com> --- .github/workflows/test_node.yml | 63 ------------------------------- .github/workflows/test_python.yml | 48 ----------------------- 2 files changed, 111 deletions(-) delete mode 100644 .github/workflows/test_node.yml delete mode 100644 .github/workflows/test_python.yml diff --git a/.github/workflows/test_node.yml b/.github/workflows/test_node.yml deleted file mode 100644 index 0214335a4f..0000000000 --- a/.github/workflows/test_node.yml +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2023 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: CI Tests - -on: - pull_request: - paths: - - 'Node/**' - - 'Node-1st-gen/**' - - 'package.json' - - 'package-lock.json' - - 'pnpm-workspace.yaml' - - 'pnpm-lock.yaml' - - 'tsconfig.template.json' - push: - paths: - - 'Node/**' - - 'Node-1st-gen/**' - - 'package.json' - - 'package-lock.json' - - 'pnpm-workspace.yaml' - - 'pnpm-lock.yaml' - - 'tsconfig.template.json' - -env: - CI: true - -jobs: - unit: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 18.x - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - - name: Cache npm - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} - - - run: npm install - - run: npm run bootstrap - - run: npm run lint - - run: npm run compile - - run: npm run test diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml deleted file mode 100644 index 49c11957d0..0000000000 --- a/.github/workflows/test_python.yml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2023 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: CI Tests - -on: - pull_request: - paths: - - 'Python/**' - - push: - paths: - - 'Python/**' - -env: - CI: true - -jobs: - unit: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - "3.10" - - "3.11" - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - working-directory: ./Python - run: pip install -r requirements.txt - - name: Lint - working-directory: ./Python - run: python pyfmt.py --check_only --exclude "**/venv/**/*.py" **/*.py From e766ae5f58054b8a97c37d07dc1b16f486bb74fe Mon Sep 17 00:00:00 2001 From: Ricky <152192194+Guzze13@users.noreply.github.com> Date: Sat, 16 Dec 2023 12:26:36 -0600 Subject: [PATCH 2/5] Update firebase.json Signed-off-by: Ricky <152192194+Guzze13@users.noreply.github.com> --- Node-1st-gen/quickstarts/email-users/firebase.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node-1st-gen/quickstarts/email-users/firebase.json b/Node-1st-gen/quickstarts/email-users/firebase.json index 2654e5d1d9..19319e2a8e 100644 --- a/Node-1st-gen/quickstarts/email-users/firebase.json +++ b/Node-1st-gen/quickstarts/email-users/firebase.json @@ -16,7 +16,7 @@ "port": 5000 }, "ui": { - "enabled": true + "enabled": false } } } From 92812415911e99bce285ccef348c8b3332ee61d8 Mon Sep 17 00:00:00 2001 From: Ricky <152192194+Guzze13@users.noreply.github.com> Date: Sat, 16 Dec 2023 12:31:30 -0600 Subject: [PATCH 3/5] Update pnpm-workspace.yaml Signed-off-by: Ricky <152192194+Guzze13@users.noreply.github.com> --- pnpm-workspace.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 2d8b5204ec..1971d6ea81 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -12,6 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -packages: - - 'Node/**' - - 'Node-1st-gen/**' + + From 62421833f3a136047b564f9dc9f8e8c21ad8cd64 Mon Sep 17 00:00:00 2001 From: Ricky <152192194+Guzze13@users.noreply.github.com> Date: Sat, 16 Dec 2023 12:35:59 -0600 Subject: [PATCH 4/5] Update project.json Signed-off-by: Ricky <152192194+Guzze13@users.noreply.github.com> --- .opensource/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.opensource/project.json b/.opensource/project.json index 4b6c1822ab..91f9552d19 100644 --- a/.opensource/project.json +++ b/.opensource/project.json @@ -8,7 +8,7 @@ "content": "README.md", "pages": { "quickstarts/big-ben/README.md": "Quickstart: HTTP Trigger + Hosting", - "quickstarts/email-users/README.md": "Quickstart: Auth Trigger", + "quickstarts/email-users/README.md": "Quickstart: disable Auth Trigger", "quickstarts/pubsub-helloworld/README.md": "Quickstart: PubSub Trigger", "quickstarts/thumbnails/README.md": "Quickstart: Cloud Storage Trigger", "quickstarts/time-server/README.md": "Quickstart: HTTP Trigger", From e8645c79e7bc88a26154e49dd66e518efe0b4ee1 Mon Sep 17 00:00:00 2001 From: Ricky <152192194+Guzze13@users.noreply.github.com> Date: Sun, 17 Dec 2023 01:17:35 -0600 Subject: [PATCH 5/5] Update LICENSE Signed-off-by: Ricky <152192194+Guzze13@users.noreply.github.com> --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index cd64521fc8..44a2edb47c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ - Apache License + revoke Apache License Version 2.0, January 2004 http://www.apache.org/licenses/