Skip to content

Commit 443a2d9

Browse files
committed
Allow-run for all not just deno
1 parent cbb57bf commit 443a2d9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/verify.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17+
1718
runs-on: ${{ matrix.os }}
1819

1920
steps:
@@ -39,5 +40,6 @@ jobs:
3940

4041
- name: test
4142
run: deno task test
43+
4244
- name: test:node
4345
run: deno task test:node

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"lock": false,
99
"tasks": {
10-
"test": "deno test --allow-run=deno --allow-ffi",
10+
"test": "deno test --allow-run --allow-ffi",
1111
"test:node": "deno task build:npm 0.0.0 && node test/main/node.mjs hello world",
1212
"build:jsr": "deno run -A tasks/build-jsr.ts",
1313
"build:npm": "deno run -A tasks/build-npm.ts"

0 commit comments

Comments
 (0)