File tree 2 files changed +7
-2
lines changed 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -69,11 +69,13 @@ jobs:
69
69
run : go vet ./cmd/... ./internal/... ./pkg/...
70
70
71
71
- name : Deno Tests (non-Windows)
72
- # Deno tests currently don't run on Windows because of "esbuild" vs.
73
- # "esbuild.exe" in the test harness. This should be fixed...
74
72
if : matrix.os != 'windows-latest'
75
73
run : make test-deno
76
74
75
+ - name : Deno Tests (Windows)
76
+ if : matrix.os == 'windows-latest'
77
+ run : make test-deno-windows
78
+
77
79
- name : Test for path/filepath
78
80
if : matrix.os == 'ubuntu-latest'
79
81
run : make no-filepath
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ test-wasm-browser: platform-wasm | scripts/browser/node_modules
67
67
test-deno : esbuild platform-deno
68
68
ESBUILD_BINARY_PATH=" $( shell pwd) /esbuild" deno test --allow-run --allow-env --allow-net --allow-read --allow-write --no-check scripts/deno-tests.js
69
69
70
+ test-deno-windows : esbuild platform-deno
71
+ ESBUILD_BINARY_PATH=./esbuild.exe deno test --allow-run --allow-env --allow-net --allow-read --allow-write --no-check scripts/deno-tests.js
72
+
70
73
register-test : version-go | scripts/node_modules
71
74
node scripts/esbuild.js npm/esbuild/package.json --version
72
75
node scripts/register-test.js
You can’t perform that action at this time.
0 commit comments