Skip to content

refactor: rename global command from 'sentinel' to 'sentinel-cli' #31

refactor: rename global command from 'sentinel' to 'sentinel-cli'

refactor: rename global command from 'sentinel' to 'sentinel-cli' #31

Workflow file for this run

name: CI
on:
push:
branches: [master, main, v1.x, v2.x]
pull_request:
branches: [master, main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test