Skip to content

Commit

Permalink
Merge pull request #48 from uConnect/varaya/INF-527
Browse files Browse the repository at this point in the history
INF-527 - Setup unit tests execution on combobo project
  • Loading branch information
stephymiehle authored Jul 18, 2024
2 parents ac2051e + f0463d8 commit c6ca9d5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .circleci/config.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Combobo Unit Tests

on:
push:
branches:
- master

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 c6ca9d5

Please sign in to comment.