Skip to content

Commit

Permalink
chore(test): added vitest with RTL (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: sanketshevkar <[email protected]>
  • Loading branch information
sanketshevkar authored Jun 6, 2024
1 parent 844cfb1 commit 7e5cbb0
Show file tree
Hide file tree
Showing 7 changed files with 8,256 additions and 5,651 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Run Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
name: Build playground
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: NPM Install
run: npm install

- name: Unit Tests
run: npm run test
Loading

0 comments on commit 7e5cbb0

Please sign in to comment.