Some text.
Some more text.
| nix copy \ | |
| --derivation \ | |
| --to ssh-ng://"${CLOUD_VM_IP}" \ | |
| ".#packages.x86_64-linux.service-pkg" | 
| nix copy \ | |
| --from ssh-ng://"${CI_MACHINE_IP}" \ | |
| ".#packages.x86_64-linux.service-pkg" | 
| # On the beefy CI machine | |
| nix copy \ | |
| --to ssh-ng://"${CLOUD_VM_IP}" \ | |
| ".#packages.x86_64-linux.service-pkg" | 
| nix copy \ | |
| --to ssh-ng://my-remote-host \ | |
| "nixpkgs#apachakafka_3_3" | 
| pub fn get_or_none<T>(items: Vec<T>) -> Option<Vec<T>> { | |
| if items.is_empty() { | |
| None | |
| } else { | |
| Some(items) | |
| } | |
| } | 
| git checkout https://github.com/DeterminateSystems/nix-github-action | |
| cd nix-github-action | |
| # Run the CI suite locally | |
| nix develop --command ci-local | 
| - name: Prettify JS and TS files | |
| run: nix develop --command ci-prettify | 
| { | |
| prettify = pkgs.writeScriptBin "ci-prettify" '' | |
| prettier --write **/*.{js,ts} | |
| ''; | |
| } | 
| - name: Prettify JS and TS files | |
| run: nix develop --command prettier --write **/*.{js,ts} |