Skip to content

NEMO v2.0.0 - New year, new improved major update #78

NEMO v2.0.0 - New year, new improved major update

NEMO v2.0.0 - New year, new improved major update #78

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
analyze:
name: Codecov
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare
uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: bun install
- name: Run Tests
run: bun test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
fail_ci_if_error: true
directory: ./packages/nemo/coverage
token: ${{ secrets.CODECOV_TOKEN }}