Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit c7e969b

Browse files
committed
true commons initial commit
0 parents  commit c7e969b

50 files changed

Lines changed: 12148 additions & 0 deletions

Some content is hidden

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

.github/workflows/test.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "test"
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
8+
jobs:
9+
testbuild:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Install nix
15+
uses: cachix/install-nix-action@v27
16+
with:
17+
install_url: https://releases.nixos.org/nix/nix-2.23.2/install
18+
19+
- uses: cachix/cachix-action@v15
20+
with:
21+
name: holochain-ci
22+
23+
- name: Install and test
24+
run: |
25+
nix develop --command bash -c "bun install && bun run test"

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# editors
2+
/.idea
3+
/.vscode
4+
5+
# system files
6+
.DS_Store
7+
8+
# build
9+
/dist/
10+
/target/
11+
/.cargo/
12+
13+
# package manager
14+
/**/node_modules/
15+
/.yarn
16+
17+
# generated and compiled files
18+
*.happ
19+
*.webhapp
20+
*.zip
21+
*.dna
22+
23+
# temporary files
24+
.hc*
25+
.running
26+
.hc

0 commit comments

Comments
 (0)