Procedurally generates a radio weather report
at master 329 B view raw
1when: 2 - event: ["push"] 3 branch: ["master"] 4 5engine: "nixery" 6 7dependencies: 8 nixpkgs: 9 - nodejs 10 11steps: 12 - name: "Install dependencies" 13 command: "npm ci" 14 15 - name: "tsc" 16 command: "npm run build && echo 'done.'" 17 18 - name: "tests" 19 command: "npm test" 20 21clone: 22 skip: false 23 depth: 3 24 submodules: false