This repository was archived by the owner on Nov 21, 2025. It is now read-only.
Assorted updates to dependencies and build system in preparation for migration #1
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| test-package-json: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Initialize environment | |
| uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@4b4659eabe75a67cebf4692c3c88a98275c67200 | |
| - name: Install node modules | |
| run: pnpm install --frozen-lockfile | |
| - run: scripts/lint.sh | |
| - run: scripts/format.sh | |
| - run: scripts/build.sh package.json | |
| - run: scripts/test.sh | |
| test-builds-repo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Initialize environment | |
| uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@4b4659eabe75a67cebf4692c3c88a98275c67200 | |
| - name: Install node modules | |
| run: pnpm install --frozen-lockfile | |
| - run: scripts/lint.sh | |
| - run: scripts/format.sh | |
| - run: scripts/build.sh builds-repo | |
| - run: scripts/test.sh |