diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index 3850cb83b4e..7f3ebb7217a 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -11,10 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@master + uses: actions/checkout@v2 with: ## fetch all history for all branches and tags, so we can compare with master fetch-depth: 0 + + - name: Show branches + run: git branch - name: Setup Node.js 12.x uses: actions/setup-node@master @@ -23,6 +26,6 @@ jobs: - name: Install Dependencies run: yarn - + - name: Check if any Changeset file exists - run: yarn changeset status --since=master \ No newline at end of file + run: yarn changeset status --since=origin/master \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9620aaab3e2..215410243d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@master + uses: actions/checkout@v2 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 diff --git a/packages/app/index.ts b/packages/app/index.ts index f6a32c844bb..c9a253808f1 100644 --- a/packages/app/index.ts +++ b/packages/app/index.ts @@ -21,7 +21,7 @@ import { isNode, isBrowser } from '@firebase/util'; import { logger } from './src/logger'; import { registerCoreComponents } from './src/registerCoreComponents'; -// Firebase Lite detection test +// Firebase Lite detection test make it great // eslint-disable-next-line @typescript-eslint/no-explicit-any if (isBrowser() && (self as any).firebase !== undefined) { logger.warn(`