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
26 changes: 2 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
branches:
- "main"
pull_request:
workflow_dispatch:

jobs:
check:
runs-on: "ubuntu-latest"
Expand All @@ -20,30 +22,6 @@ jobs:
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm moon check --all

codspeed:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0
- run: sudo apt-get install -y valgrind
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version-file: .nvmrc
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm moon run :build

- name: Run benchmarks
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v1`
uses: CodSpeedHQ/action@main
with:
run: |
pnpm moon run --concurrency 1 :bench
pnpm --workspace-concurrency 1 -r bench-tinybench
pnpm --workspace-concurrency 1 -r bench-benchmark-js

list-examples:
runs-on: "ubuntu-latest"
name: List examples
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "codspeed"
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:

jobs:
codspeed:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0
- run: sudo apt-get install -y valgrind
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version-file: .nvmrc
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm moon run :build

- name: Run benchmarks
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v1`
uses: CodSpeedHQ/action@main
with:
run: |
pnpm moon run --concurrency 1 :bench
pnpm --workspace-concurrency 1 -r bench-tinybench
pnpm --workspace-concurrency 1 -r bench-benchmark-js