We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de335b commit 75b910dCopy full SHA for 75b910d
.github/workflows/ci.yml
@@ -98,15 +98,23 @@ jobs:
98
strategy:
99
matrix:
100
bun-version: [1.0.11]
101
+ node-version: [20.x]
102
suite: [bun]
103
104
steps:
105
- 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"
111
- name: Use Bun ${{ matrix.bun-version }}
112
uses: oven-sh/setup-bun@v1
113
with:
114
bun-version: ${{ matrix.bun-version }}
115
- run: |
116
+ PKG_TARBALL=$(npm --loglevel error pack)
117
cd integration/${{ matrix.suite }}
- bun install
118
+ bun uninstall replicate
119
+ bun install "file:../../$PKG_TARBALL"
120
bun test
0 commit comments