diff options
author | 2023-04-28 09:41:36 -0700 | |
---|---|---|
committer | 2023-04-28 09:41:36 -0700 | |
commit | b7c13f2ccc048416bca2699b73dc73201e60c011 (patch) | |
tree | fd721aed41bc957488b5cd6a0db4578a8e660393 | |
parent | 64b9967fe632961a2762bdbd4bfbaaf96198e0a1 (diff) | |
download | bun-b7c13f2ccc048416bca2699b73dc73201e60c011.tar.gz bun-b7c13f2ccc048416bca2699b73dc73201e60c011.tar.zst bun-b7c13f2ccc048416bca2699b73dc73201e60c011.zip |
Maybe fix test runner on macOS
-rw-r--r-- | .github/workflows/bun-test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml index 039dc0a2c..c22fd5c35 100644 --- a/.github/workflows/bun-test.yml +++ b/.github/workflows/bun-test.yml @@ -46,10 +46,10 @@ jobs: run: | npm install @oven/bun-${{ matrix.tag }}@${{ github.event.inputs.version }} chmod +x node_modules/@oven/bun-${{ matrix.tag }}/bin/bun - sudo cp node_modules/@oven/bun-${{ matrix.tag }}/bin/bun /usr/bin/bun + cp node_modules/@oven/bun-${{ matrix.tag }}/bin/bun /usr/bin/bun - id: test name: Test run: | bun install bun install --cwd test - bun x ts-node --esm scripts/bun-test.ts test/ --isolated --timeout=${{ github.event.inputs.timeout }} + bun x ts-node --esm scripts/bun-test.ts ${{ github.event.inputs.path }} --isolated --timeout=${{ github.event.inputs.timeout }} |