Skip to content

Merge branch 'main' of https://github.com/tom-acco/aprs-smart-beacon-… #4

Merge branch 'main' of https://github.com/tom-acco/aprs-smart-beacon-…

Merge branch 'main' of https://github.com/tom-acco/aprs-smart-beacon-… #4

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:

Check failure on line 12 in .github/workflows/node.js.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/node.js.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm audit fix
- run: npm run build
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v1