We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbb57bf commit 443a2d9Copy full SHA for 443a2d9
.github/workflows/verify.yaml
@@ -14,6 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
os: [ubuntu-latest, macos-latest, windows-latest]
17
+
18
runs-on: ${{ matrix.os }}
19
20
steps:
@@ -39,5 +40,6 @@ jobs:
39
40
41
- name: test
42
run: deno task test
43
44
- name: test:node
45
run: deno task test:node
deno.json
@@ -7,7 +7,7 @@
7
},
8
"lock": false,
9
"tasks": {
10
- "test": "deno test --allow-run=deno --allow-ffi",
+ "test": "deno test --allow-run --allow-ffi",
11
"test:node": "deno task build:npm 0.0.0 && node test/main/node.mjs hello world",
12
"build:jsr": "deno run -A tasks/build-jsr.ts",
13
"build:npm": "deno run -A tasks/build-npm.ts"
0 commit comments