Skip to content

chore: Bump uuid and aedes #1133

chore: Bump uuid and aedes

chore: Bump uuid and aedes #1133

Workflow file for this run

name: Default Build & Test
on:
push:
branches: [ main ]
paths-ignore:
- '.github/workflows/installer-build.yaml'
- 'installer/**'
- 'docker/**'
- '.github/workflows/docker-build.yaml'
pull_request:
branches: [ main ]
paths-ignore:
- '.github/workflows/installer-build.yaml'
- 'installer/**'
- 'docker/**'
- '.github/workflows/docker-build.yaml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20, 22, 24]
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Run linting checks
if: ${{ matrix.node-version == 20 }}
run: npm run lint
- name: Run tests
run: npm run test