We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87230b5 commit 0e7b5d4Copy full SHA for 0e7b5d4
.github/workflows/CI.yml
@@ -158,7 +158,6 @@ jobs:
158
run: ls -R .
159
shell: bash
160
- name: Test bindings
161
- if: runner.os != 'Windows'
162
run: yarn test
163
test-linux-binding:
164
name: Test ${{ matrix.target }} - node@${{ matrix.node }}
__test__/index.spec.ts
@@ -20,6 +20,13 @@ test('smoke test', async (t) => {
20
return
21
}
22
23
+ // Skip test after client creation on Windows
24
+ // Note all Windows return win32 including 64 bit
25
+ if (process.platform === 'win32') {
26
+ t.pass('Skipping end-to-end test on Windows')
27
+ return
28
+ }
29
+
30
// Count initial deployments
31
let start_deployments_count = (await client.listDeployments()).length
32
0 commit comments