Procedurally generates a radio weather report

node version matrix

Changed files
+9
.github
workflows
+9
.github/workflows/test.yml
··· 14 14 timeout-minutes: 20 15 15 strategy: 16 16 fail-fast: true 17 + matrix: 18 + nodever: 19 + [ 20 + 'latest', 21 + 'lts/*' 22 + ] 17 23 permissions: 18 24 contents: read 19 25 ··· 23 29 24 30 - name: Setup nodejs 25 31 uses: https://github.com/actions/setup-node@v4 32 + with: 33 + node-version: "${{ matrix.nodever }}" 34 + check-latest: true 26 35 27 36 - name: Install dependencies 28 37 run: npm ci