Actualizar submodulo origin a la version 20.0.6 de Angular
#26
Workflow file for this run
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: CI (Pull Request) | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-adev: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/[email protected] | |
| with: | |
| submodules: true | |
| - name: Setup Node JS | |
| uses: actions/[email protected] | |
| - name: Setup Bazel | |
| uses: bazel-contrib/[email protected] | |
| with: | |
| bazelisk-cache: true | |
| disk-cache: true | |
| repository-cache: true | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build Docs | |
| run: npm run build |