@stream44.studio/encapsulate 0.4.0-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ # DCO Signatures
2
+
3
+ This file contains a permanent record of all Developer Certificate of Origin (DCO) agreements.
4
+ Each contributor who has agreed to the DCO.md is listed below with their signing date.
5
+ Format: name <email> | signed: <date> | agreement: <commit> (<agreement_change_date>) [| signature: <key_fingerprint>]
6
+
7
+ ---
8
+
9
+ Christoph <christoph@christoph.diy> | signed: 2026-02-14 02:06:03 UTC | agreement: 690907bfc27dc35e001ae583e7f3a18b18e6b610 (2026-02-13 21:06:03 -0500) | signature: SHA256:PJKqkaWh/+N7Zkmr59Zvgi92ByLmULIUMbubiUiY8X4
@@ -0,0 +1,12 @@
1
+ name: Validate DCO Signatures
2
+ on: [push, pull_request]
3
+ jobs:
4
+ dco:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ with:
9
+ fetch-depth: 0
10
+ - uses: Stream44/dco@main
11
+ with:
12
+ enforceSignatureFingerprints: true
@@ -0,0 +1,26 @@
1
+ name: Run Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
+ branches: [ "main" ]
8
+
9
+ jobs:
10
+ test:
11
+ name: Run Tests
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Setup Bun
18
+ uses: oven-sh/setup-bun@v2
19
+ with:
20
+ bun-version: latest
21
+
22
+ - name: Install dependencies
23
+ run: bun install
24
+
25
+ - name: Run tests
26
+ run: bun test