Skip to content

chore(deps-dev): bump brace-expansion from 1.1.11 to 1.1.12 in /sandbox/chat-notification-socketio-example/services/socketio-service #7837

chore(deps-dev): bump brace-expansion from 1.1.11 to 1.1.12 in /sandbox/chat-notification-socketio-example/services/socketio-service

chore(deps-dev): bump brace-expansion from 1.1.11 to 1.1.12 in /sandbox/chat-notification-socketio-example/services/socketio-service #7837

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
node_matrix_tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Monorepo Deps
run: npm ci
- name: Run Test Cases
run: npm run test --workspaces --if-present
- name: Run Lint Checks
run: npm run lint --workspaces --if-present
npm_test:
runs-on: ubuntu-latest
needs: node_matrix_tests
if: success()
steps:
- name: Final status
run: echo "✅ All tests passed for Node.js 20, 22, and 24"