Skip to content

Commit

Permalink
feat: install vitest unit test runner (#143)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Tibúrcio <v-gtiburcio@mparticle.com>
Co-authored-by: tibuurcio <tibuurcio@users.noreply.github.com>
  • Loading branch information
3 people authored Mar 14, 2024
1 parent 9938841 commit 2ad4075
Show file tree
Hide file tree
Showing 8 changed files with 634 additions and 17 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Unit Tests
on: push
jobs:
test:
name: Unit Tests
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4

- name: Install Dependencies
run: npm ci

- name: Run Unit Tests
run: npm run test-unit
Loading

0 comments on commit 2ad4075

Please sign in to comment.