Skip to content

Commit

Permalink
feat(ci): Add Unit Test in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fdrault committed Dec 12, 2023
1 parent 7d6819b commit 083c5d6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Unit Tests

on:
push:
branches: [main, develop]
pull_request:
branches: [main]

jobs:
Jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Package
run: npm ci --force
- name: Run Package Unit tests
run: npm test

0 comments on commit 083c5d6

Please sign in to comment.