Skip to content

Commit 19a0498

Browse files
authored
ci: bump to node 18 (#65)
1 parent 5a1c3a9 commit 19a0498

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Node
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: '16'
32+
node-version: '18'
3333

3434
- name: Install
3535
run: yarn install --frozen-lockfile

__tests__/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ test('ExperimentClient.variant, with exposure tracking provider, track called on
267267
for (let i = 0; i < 10; i++) {
268268
client.variant(serverKey);
269269
}
270-
const variant = client.variant(serverKey);
270+
client.variant(serverKey);
271271

272272
expect(trackSpy).toBeCalledTimes(1);
273273
expect(trackSpy).toHaveBeenCalledWith(

0 commit comments

Comments
 (0)