Skip to content

feat(feature-toggle): add sequelize ORM #7870

feat(feature-toggle): add sequelize ORM

feat(feature-toggle): add sequelize ORM #7870

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"