Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1when:
2 - event: ["push", "pull_request"]
3 branch: main
4
5engine: nixery
6
7dependencies:
8 nixpkgs:
9 - git
10 - findutils
11 github:NixOS/nixpkgs/nixpkgs-unstable:
12 - bun
13
14steps:
15 - name: install dependencies
16 command: |
17 export PATH="$HOME/.nix-profile/bin:$PATH"
18
19 # have to regenerate otherwise it wont install necessary dependencies to run
20 find . -type f \( -name "bun.lock" -o -name "package-lock.json" \) -delete
21 bun install
22
23 - name: run all tests
24 command: |
25 export PATH="$HOME/.nix-profile/bin:$PATH"
26 bun test