Procedurally generates a radio weather report

node version matrix

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