Skip to content

Commit 5ff6c35

Browse files
authored
Merge pull request #13 from JudgmentLabs/ahh/0.3.1
feat: trace initialization template
2 parents 6ac4c73 + 7c63dbe commit 5ff6c35

22 files changed

+577
-217
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: "18"
24+
node-version: "20"
2525
cache: "npm"
2626
registry-url: "https://registry.npmjs.org"
2727

@@ -66,7 +66,7 @@ jobs:
6666

6767
- uses: actions/setup-node@v4
6868
with:
69-
node-version: "18"
69+
node-version: "20"
7070
registry-url: "https://registry.npmjs.org"
7171
cache: "npm"
7272

.github/workflows/test-install.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Test Install
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: "20"
21+
cache: "npm"
22+
23+
- name: Install dependencies
24+
run: npm ci
25+
26+
- name: Type check
27+
run: npm run check
28+
29+
- name: Build package
30+
run: npm run build
31+
32+
- name: Check build output
33+
run: |
34+
set -e
35+
36+
# Verify main files exist
37+
test -f dist/index.mjs
38+
test -f dist/index.umd.js
39+
test -f dist/index.d.ts

0 commit comments

Comments
 (0)