Skip to content

Commit 3a33540

Browse files
committed
initial commit
0 parents  commit 3a33540

File tree

28 files changed

+11596
-0
lines changed

28 files changed

+11596
-0
lines changed

.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 "npm install && npm run test"

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
*.bin
23+
24+
# temporary files
25+
.hc*
26+
.running
27+
.hc

0 commit comments

Comments
 (0)