This repository was archived by the owner on Nov 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +43
-42
lines changed Expand file tree Collapse file tree 2 files changed +43
-42
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ permissions : {}
14+
15+ defaults :
16+ run :
17+ shell : bash
18+
19+
20+ jobs :
21+ test-package-json :
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : Initialize environment
25+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@4b4659eabe75a67cebf4692c3c88a98275c67200
26+ - name : Install node modules
27+ run : pnpm install --frozen-lockfile
28+ - run : scripts/lint.sh
29+ - run : scripts/format.sh
30+ - run : scripts/build.sh package.json
31+ - run : scripts/test.sh
32+
33+ test-builds-repo :
34+ runs-on : ubuntu-latest
35+ steps :
36+ - name : Initialize environment
37+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@4b4659eabe75a67cebf4692c3c88a98275c67200
38+ - name : Install node modules
39+ run : pnpm install --frozen-lockfile
40+ - run : scripts/lint.sh
41+ - run : scripts/format.sh
42+ - run : scripts/build.sh builds-repo
43+ - run : scripts/test.sh
You can’t perform that action at this time.
0 commit comments