Skip to content

test: unit test worflow #1

test: unit test worflow

test: unit test worflow #1

Workflow file for this run

name: Combobo Unit Tests
on:
push:
branches:
# - master
- varaya/INF-527
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test