Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gmitch215 committed Dec 28, 2024
1 parent eaee66b commit b155a8f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,28 @@ jobs:
with:
node-version: '20'
- name: Install JavaScript (Node) Dependencies
run: npm --prefix benchmarks ci
run: |
cd benchmarks
npm install
cd ..
- name: Install JavaScript (Deno)
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install JavaScript (Deno) Dependencies
run: |
cd benchmarks
deno install
cd ..
- name: Install JavaScript (Bun)
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install JavaScript (Bun) Dependencies
run: |
cd benchmarks
bun install
cd ..
- name: Install Kotlin
uses: gmitch215/setup-kotlin@main
with:
Expand Down

0 comments on commit b155a8f

Please sign in to comment.