Skip to content

Commit

Permalink
Merge pull request #5 from holochain-apps/feat/first-attempt
Browse files Browse the repository at this point in the history
First attempt
  • Loading branch information
matthme authored Nov 4, 2024
2 parents f2101a2 + 58930b2 commit d7a9fc5
Show file tree
Hide file tree
Showing 51 changed files with 12,851 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "test"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
testbuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install nix
uses: cachix/install-nix-action@v27
with:
install_url: https://releases.nixos.org/nix/nix-2.23.2/install

- uses: cachix/cachix-action@v15
with:
name: holochain-ci

- name: Install and test
run: |
nix develop --command bash -c "npm install && npm run test"
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# editors
/.idea
/.vscode

# system files
.DS_Store

# build
/dist/
/target/
/.cargo/

# package manager
/**/node_modules/
/.yarn

# generated and compiled files
*.happ
*.webhapp
*.zip
*.dna

# temporary files
.hc*
.running
.hc
Loading

0 comments on commit d7a9fc5

Please sign in to comment.