Skip to content

[PKD-11]: Add test to CI/CD #6

[PKD-11]: Add test to CI/CD

[PKD-11]: Add test to CI/CD #6

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn
- name: Install Watchman
run: sudo apt-get install -y watchman
Jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Tests
run: yarn test