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
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
activities-examples,
mutex,
nestjs-exchange-rates,
timer-examples
timer-examples,
sleep-for-days
]
include:
- os: windows-latest
Expand All @@ -38,7 +39,7 @@ jobs:
name: Install pnpm
with:
run_install: false
version: 9
version: 10

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -69,7 +70,7 @@ jobs:
name: Install pnpm
with:
run_install: false
version: 9
version: 10

- uses: actions/setup-node@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .scripts/list-of-samples.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"search-attributes",
"signals-queries",
"sinks",
"sleep-for-days",
"snippets",
"state",
"timer-examples",
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,14 @@ pnpm run format
pnpm run lint
```

> [!NOTE]
> To **reset** your environment in the event that it is broken, consider running:
> ```
> git clean -xfd && rm pnpm-lock.yaml
> ```
> in the root directory</br>
> **Warning**: this may result in losing work-in-progress (i.e. untracked files).

### Dependencies

- The docs and tutorials depend on `SNIPSTART` and `SNIPEND` comments in samples. Make sure to search through the [docs](https://github.com/temporalio/documentation/) and [learn](https://github.com/temporalio/temporal-learning) repos to make sure a snippet is unused before removing it.
Expand Down
11 changes: 2 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,5 @@
}
}
}
},
"workspaces": [
"*",
"message-passing/*",
"monorepo-folders/packages/*",
"food-delivery/packages/*",
"food-delivery/apps/*"
]
}
}
}
Loading