chore: update w9jds/firebase-action action to v13.24.1 #25426
Workflow file for this run
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: ⚙️ Build | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
libs: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Build packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: taiga-family/ci/actions/setup/variables@v1.94.0 | |
- uses: taiga-family/ci/actions/setup/node@v1.94.0 | |
- run: npm run run-many:build:libs | |
- run: npx ts-node ./scripts/check-dist.ts | |
demo: | |
if: ${{ !contains(github.head_ref, 'release/') }} | |
name: Prerender of demo application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: taiga-family/ci/actions/setup/variables@v1.94.0 | |
- uses: taiga-family/ci/actions/setup/node@v1.94.0 | |
- run: npx nx prerender demo | |
- run: npx --yes bundlemon --config .github/.bundlemonrc.json | |
continue-on-error: true | |
env: | |
CI_COMMIT_SHA: ${{ env.CI_COMMIT_SHA }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |