Procedurally generates a radio weather report

mirror actions to tangled

Changed files
+42
.tangled
workflows
+18
.tangled/workflows/audit.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["master"] 4 + 5 + engine: "nixery" 6 + 7 + dependencies: 8 + nixpkgs: 9 + - nodejs 10 + 11 + steps: 12 + - name: "NPM Audit" 13 + command: "npm audit" 14 + 15 + clone: 16 + skip: false 17 + depth: 3 18 + submodules: false
+24
.tangled/workflows/test.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["master"] 4 + 5 + engine: "nixery" 6 + 7 + dependencies: 8 + nixpkgs: 9 + - nodejs 10 + 11 + steps: 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 + 21 + clone: 22 + skip: false 23 + depth: 3 24 + submodules: false