Skip to content

Commit

Permalink
chore: add unit test ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Nov 21, 2024
1 parent cc5f5d7 commit ba34a1f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test__unit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches: ["main", "develop"]

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install Yarn Package Manager
run: npm install -g yarn

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit ba34a1f

Please sign in to comment.