Skip to content

Blog Post - CI-CD of python packages in a mono repo #80

Blog Post - CI-CD of python packages in a mono repo

Blog Post - CI-CD of python packages in a mono repo #80

name: Run Unit Tests
on:
pull_request:
jobs:
RunUnitTests:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.0.2
- name: Install dependencies
run: |
pnpm install
- name: Run Unit Tests
run: |
npm test