Skip to content

Commit 54b3bda

Browse files
committed
Published using @Stream44 Studio
1 parent 16038b9 commit 54b3bda

4 files changed

Lines changed: 55 additions & 1 deletion

File tree

.github/workflows/dco.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: 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
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Gordian Open Integrity
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
gordian-open-integrity:
7+
name: Gordian Open Integrity
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
- uses: Stream44/t44-blockchaincommons.com@main

.github/workflows/test.yaml

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

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"name": "@framespace.dev/FramespaceGenesis",
33
"version": "0.1.0",
44
"license": "Apache-2.0",
5-
"private": true
5+
"private": true,
6+
"scripts": {
7+
"test": "bun test"
8+
}
69
}

0 commit comments

Comments
 (0)