Skip to content

Randomise reconnect timing #484

Randomise reconnect timing

Randomise reconnect timing #484

Workflow file for this run

name: Default Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Run linting checks
if: ${{ matrix.node-version == 16 }}
run: npm run lint
- name: Run tests
run: npm run test