Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Commit 1e87023

Browse files
committed
ci: use github actions for ci
1 parent 9e34371 commit 1e87023

File tree

2 files changed

+43
-42
lines changed

2 files changed

+43
-42
lines changed

.circleci/config.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

0 commit comments

Comments
 (0)