aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ashcon Partovi <ashcon@partovi.net> 2023-04-28 09:58:56 -0700
committerGravatar Ashcon Partovi <ashcon@partovi.net> 2023-04-28 09:58:56 -0700
commita06e90eec3e347e0700f3296a215bbc08a243ac6 (patch)
tree683e9516fc30f3871b5a7cdc43eaf189f33914cf
parent35d470d98a7df1d0bee7c96630dd04267d0c080e (diff)
downloadbun-a06e90eec3e347e0700f3296a215bbc08a243ac6.tar.gz
bun-a06e90eec3e347e0700f3296a215bbc08a243ac6.tar.zst
bun-a06e90eec3e347e0700f3296a215bbc08a243ac6.zip
Fix path of bun in workflow, try 3
-rw-r--r--.github/workflows/bun-test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml
index 45b81767e..e78ef565a 100644
--- a/.github/workflows/bun-test.yml
+++ b/.github/workflows/bun-test.yml
@@ -49,7 +49,7 @@ jobs:
- id: test
name: Test
run: |
- echo "node_modules/@oven/bun-${{ matrix.tag }}/bin" >> $GITHUB_PATH
+ export PATH="${PATH}:node_modules/@oven/bun-${{ matrix.tag }}/bin"
bun install
bun install --cwd test
bun x ts-node --esm scripts/bun-test.ts ${{ github.event.inputs.path }} --isolated --timeout=${{ github.event.inputs.timeout }}