Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml → .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Test & Coverage

permissions:
pull-requests: write
Expand All @@ -7,8 +7,19 @@ permissions:
on:
push:
branches: [main]
paths:
- "**/*.ts"
- "**/*.spec.ts"
- "package.json"
- "pnpm-lock.yaml"

pull_request:
branches: [main]
paths:
- "**/*.ts"
- "**/*.spec.ts"
- "package.json"
- "pnpm-lock.yaml"

jobs:
test:
Expand Down
15 changes: 15 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,18 @@
- `Fx`: Fx class implements `Iterable<T>`
- `lazy`: Lazy evaluation pure functions
- `evaluate`: Eager evaluation pure functions

# Dev

## Install

```bash
pnpm install
```

## Test

```bash
pnpm run test:watch
pnpm run test:coverage
```
Loading