diff options
author | 2023-04-28 09:52:15 -0700 | |
---|---|---|
committer | 2023-04-28 09:52:15 -0700 | |
commit | 05abe8eabe558ca2eae52d3a12d29f273f7e59aa (patch) | |
tree | 451a95091da46835b3980c947f7bb604c76c84b4 | |
parent | 48671b77be26158b7e8a79e0c3b617f182bdafaf (diff) | |
download | bun-05abe8eabe558ca2eae52d3a12d29f273f7e59aa.tar.gz bun-05abe8eabe558ca2eae52d3a12d29f273f7e59aa.tar.zst bun-05abe8eabe558ca2eae52d3a12d29f273f7e59aa.zip |
Fix path of bun in workflow
-rw-r--r-- | .github/workflows/bun-test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml index d3033bbb7..2eb914e43 100644 --- a/.github/workflows/bun-test.yml +++ b/.github/workflows/bun-test.yml @@ -46,9 +46,10 @@ jobs: run: | npm install @oven/bun-${{ matrix.tag }}@${{ github.event.inputs.version }} chmod +x node_modules/@oven/bun-${{ matrix.tag }}/bin/bun - echo "node_modules/@oven/bun-${{ matrix.tag }}/bin" >> $GITHUB_PATH - id: test name: Test + env: + PATH: "${PATH}:node_modules/@oven/bun-${{ matrix.tag }}/bin" run: | bun install bun install --cwd test |