Switch to SafeObserver in MutationObserver classes to prevent errors during SSR #850
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Deploy / preview | |
on: pull_request | |
env: | |
IS_FORK: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | |
IS_DEPENDABOT: ${{ github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' }} | |
jobs: | |
build_and_preview: | |
name: Firebase | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js and Cache | |
uses: ./.github/actions/nodejs | |
- run: npx nx build demo | |
- name: Debug output | |
run: tree dist/demo -P '*.html' | |
- name: Deploy preview | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
continue-on-error: true | |
if: ${{ env.IS_FORK == 'false' && env.IS_DEPENDABOT == 'false' }} | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_NG_WEB_APIS_COMMON }} | |
projectId: ng-web-apis-common | |
expires: 1d | |
concurrency: | |
group: firebase-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |