Skip to content

feat: Execute a script command via CLI like hubot -e some command (… #171

feat: Execute a script command via CLI like hubot -e some command (…

feat: Execute a script command via CLI like hubot -e some command (… #171

name: Node.js (Windows) CI
on:
push:
branches:
- main
schedule:
- cron: '5 4 * * 0'
jobs:
npm-test:
runs-on: windows-latest
strategy:
matrix:
node-version: [20.x]
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
- name: Run Tests
env:
HUBOT_LOG_LEVEL: debug
run: npm test