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 21 22 - name: run all tests 23 command: | 24 export PATH="$HOME/.nix-profile/bin:$PATH" 25 bun test