Skip to content

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#701) #529

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#701)

chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (#701) #529

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version:
- 18
- 20
steps:
- name: Checkout repository
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 tests
run: npm test
- name: Run tests with µWebSockets.js
run: npm run test:uws
if: ${{ matrix.node-version == '18' }}