Skip to content

📝 docs(readme): add a complete description about the project #14

📝 docs(readme): add a complete description about the project

📝 docs(readme): add a complete description about the project #14

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: ~
jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.12.0
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.18.0
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run unit tests
run: pnpm test:coverage --verbose