Skip to content

Merge branch 'master' of github.com:imqueue/cli #1

Merge branch 'master' of github.com:imqueue/cli

Merge branch 'master' of github.com:imqueue/cli #1

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [node, lts/*]
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 install
- name: Run tests
run: npm test