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 github:NixOS/nixpkgs/nixpkgs-unstable: 11 - bun 12 13steps: 14 - name: install dependencies 15 command: | 16 export PATH="$HOME/.nix-profile/bin:$PATH" 17 18 # have to regenerate otherwise it wont install necessary dependencies to run 19 rm -rf bun.lock package-lock.json 20 bun install @oven/bun-linux-aarch64 21 bun install 22 23 - name: run all tests 24 command: | 25 export PATH="$HOME/.nix-profile/bin:$PATH" 26 bun test