Skip to content

Commit 75b910d

Browse files
committed
Build and install tarball for Bun integration test
1 parent 8de335b commit 75b910d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,23 @@ jobs:
9898
strategy:
9999
matrix:
100100
bun-version: [1.0.11]
101+
node-version: [20.x]
101102
suite: [bun]
102103

103104
steps:
104105
- uses: actions/checkout@v3
106+
- name: Use Node.js ${{ matrix.node-version }}
107+
uses: actions/setup-node@v3
108+
with:
109+
node-version: ${{ matrix.node-version }}
110+
cache: "npm"
105111
- name: Use Bun ${{ matrix.bun-version }}
106112
uses: oven-sh/setup-bun@v1
107113
with:
108114
bun-version: ${{ matrix.bun-version }}
109115
- run: |
116+
PKG_TARBALL=$(npm --loglevel error pack)
110117
cd integration/${{ matrix.suite }}
111-
bun install
118+
bun uninstall replicate
119+
bun install "file:../../$PKG_TARBALL"
112120
bun test

0 commit comments

Comments
 (0)