Skip to content

Commit

Permalink
test: unit test worflow
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Araya <[email protected]>
  • Loading branch information
vicaraya committed Jul 17, 2024
1 parent ac2051e commit 34ccb38
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .circleci/config.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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

0 comments on commit 34ccb38

Please sign in to comment.