fix: remove unnecessary IDs from section headers in animations docume… #156
This file contains hidden or 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 adev and deploy to production | |
on: | |
push: | |
branches: | |
- main | |
env: | |
BAZEL_REPO_CACHE_PATH: '~/.cache/bazel_repo_cache' | |
jobs: | |
adev-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: setup pnpm | |
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 | |
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version-file: '.node-version' | |
cache: pnpm | |
- uses: bazel-contrib/setup-bazel@e403ad507104847c3539436f64a9e9eecc73eeec # 0.8.5 | |
with: | |
bazelisk-cache: true | |
disk-cache: true | |
repository-cache: true | |
bazelrc: | | |
# Print all the options that apply to the build. | |
# This helps us diagnose which options override others | |
# (e.g. /etc/bazel.bazelrc vs. tools/bazel.rc) | |
build --announce_rc | |
# More details on failures | |
build --verbose_failures=true | |
# CI supports colors but Bazel does not detect it. | |
common --color=yes | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
- name: Deploy to Firebase Hosting | |
uses: FirebaseExtended/action-hosting-deploy@0cbcac4740c2bfb00d632f0b863b57713124eb5a # v0.9.0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" | |
projectId: angular-ja | |
channelId: live |