Skip to content

Commit 78da8f1

Browse files
JoshLuedemanCopilot
andcommitted
🔧 Add CI workflow
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a6c5d96 commit 78da8f1

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "🎭 Backstage CI"
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build-and-test:
14+
name: "🏗️ Build & Test"
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Setup Node.js
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: "22"
24+
cache: "yarn"
25+
26+
- name: Install Dependencies
27+
run: yarn install --frozen-lockfile
28+
29+
- name: TypeScript Check
30+
run: yarn tsc
31+
32+
- name: Build
33+
run: yarn build:all
34+
35+
- name: Lint
36+
run: yarn lint:all
37+
38+
- name: Test
39+
run: yarn test

0 commit comments

Comments
 (0)