Skip to content

feat: add view transition api package #85

feat: add view transition api package

feat: add view transition api package #85

Workflow file for this run

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