Skip to content

Commit ec8c4e9

Browse files
committed
feat: CI/CD workflows, changesets, boundary checks — Prompt 9
Signed-off-by: Todd Palmer <todd@betterdata.co>
1 parent dcb24c8 commit ec8c4e9

50 files changed

Lines changed: 419 additions & 32 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changelog": "@changesets/changelog-github",
3+
"commit": false,
4+
"fixed": [],
5+
"linked": [],
6+
"access": "public",
7+
"baseBranch": "main",
8+
"updateInternalDependencies": "patch",
9+
"ignore": ["apps/*"]
10+
}

.github/workflows/boundary-check.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ on:
66
- "packages/**"
77

88
jobs:
9-
placeholder:
9+
check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- run: echo "Workflow scaffolded. Full implementation in Prompt 9."
12+
- uses: actions/checkout@v4
13+
- uses: pnpm/action-setup@v4
14+
with:
15+
version: 9
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
cache: pnpm
20+
- run: pnpm install --frozen-lockfile
21+
- run: pnpm check-boundary

.github/workflows/ci.yml

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,51 @@ on:
77
branches: [main]
88

99
jobs:
10-
placeholder:
10+
build-and-test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- run: echo "Workflow scaffolded. Full implementation in Prompt 9."
13+
- uses: actions/checkout@v4
14+
- uses: pnpm/action-setup@v4
15+
with:
16+
version: 9
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
cache: pnpm
21+
- run: pnpm install --frozen-lockfile
22+
- run: pnpm build
23+
- run: pnpm typecheck
24+
- run: pnpm lint
25+
- run: pnpm test -- --coverage
26+
- uses: codecov/codecov-action@v4
27+
with:
28+
fail_ci_if_error: false
29+
30+
validate-loops:
31+
runs-on: ubuntu-latest
32+
needs: build-and-test
33+
steps:
34+
- uses: actions/checkout@v4
35+
- uses: pnpm/action-setup@v4
36+
with:
37+
version: 9
38+
- uses: actions/setup-node@v4
39+
with:
40+
node-version: 20
41+
cache: pnpm
42+
- run: pnpm install --frozen-lockfile
43+
- run: pnpm validate-loops
44+
45+
boundary-check:
46+
runs-on: ubuntu-latest
47+
steps:
48+
- uses: actions/checkout@v4
49+
- uses: pnpm/action-setup@v4
50+
with:
51+
version: 9
52+
- uses: actions/setup-node@v4
53+
with:
54+
node-version: 20
55+
cache: pnpm
56+
- run: pnpm install --frozen-lockfile
57+
- run: pnpm check-boundary

.github/workflows/release.yml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,28 @@ on:
55
branches: [main]
66

77
jobs:
8-
placeholder:
8+
release:
9+
if: contains(github.event.head_commit.message, 'chore(release)')
910
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
id-token: write
1014
steps:
11-
- run: echo "Workflow scaffolded. Full implementation in Prompt 9."
15+
- uses: actions/checkout@v4
16+
- uses: pnpm/action-setup@v4
17+
with:
18+
version: 9
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: pnpm
23+
registry-url: https://registry.npmjs.org
24+
- run: pnpm install --frozen-lockfile
25+
- run: pnpm build
26+
- run: pnpm release
27+
env:
28+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29+
- name: Create GitHub release
30+
uses: softprops/action-gh-release@v2
31+
with:
32+
generate_release_notes: true

apps/inspector/.next/BUILD_ID

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
yRvGGAB2oc-oWiahEopdj
1+
13K1QRJSsVcQnwXoeSl_5

apps/inspector/.next/build-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"devFiles": [],
66
"ampDevFiles": [],
77
"lowPriorityFiles": [
8-
"static/yRvGGAB2oc-oWiahEopdj/_buildManifest.js",
9-
"static/yRvGGAB2oc-oWiahEopdj/_ssgManifest.js"
8+
"static/13K1QRJSsVcQnwXoeSl_5/_buildManifest.js",
9+
"static/13K1QRJSsVcQnwXoeSl_5/_ssgManifest.js"
1010
],
1111
"rootMainFiles": [
1212
"static/chunks/webpack-078f6dfb37dff419.js",
176 KB
Binary file not shown.
-1.21 KB
Binary file not shown.
118 KB
Binary file not shown.
2.86 KB
Binary file not shown.

0 commit comments

Comments
 (0)