chore: update dependency @taiga-ui/editor to v4.16.0 #943
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 | |
jobs: | |
build_and_preview: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Firebase | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: taiga-family/ci/actions/setup/variables@v1.97.0 | |
- uses: taiga-family/ci/actions/setup/node@v1.97.0 | |
- run: npx nx build demo | |
- name: Debug output | |
run: tree dist/demo/browser -P '*.html' | |
- name: Deploy preview | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
if: env.IS_OWNER_MODE == 'true' | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_TAIGA_UI_PREVIEW_LANDING }} | |
projectId: taiga-ui-preview-landing | |
expires: 1d | |
concurrency: | |
group: firebase-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |