Skip to content

Commit 78954be

Browse files
committed
We’re ok to use deno 1.40 here
it's just the cli that needs to use 1.39 because of shouted warnings we cannot yet avoid due to dnt
1 parent b1094a1 commit 78954be

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ jobs:
4444

4545
- run: deno coverage cov_profile --lcov --output=cov_profile.lcov
4646

47-
- uses: coverallsapp/github-action@v1
47+
- uses: coverallsapp/github-action@v2
4848
with:
4949
path-to-lcov: cov_profile.lcov
5050
parallel: true
51-
flag-name: ${{ matrix.platform.id }}
51+
flag-name: ${{ matrix.os }}
5252

5353
upload-coverage:
5454
needs: tests
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: coverallsapp/github-action@v1
57+
- uses: coverallsapp/github-action@v2
5858
with:
5959
parallel-finished: true
6060

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
]
1111
}
1212
},
13-
"pkgx": "deno~1.39 npm",
13+
"pkgx": "deno^1.40 npm",
1414
"tasks": {
15-
"test": "deno test --parallel --unstable --allow-env --allow-read --allow-ffi --allow-net=dist.pkgx.dev,github.com,codeload.github.com --allow-write --allow-run=tar,uname,/bin/sh,foo,'C:\\Windows\\system32\\cmd.exe'",
16-
"typecheck": "deno check --unstable ./mod.ts",
15+
"test": "deno test --parallel --unstable-fs --unstable-ffi --allow-env --allow-read --allow-ffi --allow-net=dist.pkgx.dev,github.com,codeload.github.com --allow-write --allow-run=tar,uname,/bin/sh,foo,'C:\\Windows\\system32\\cmd.exe'",
16+
"typecheck": "deno check ./mod.ts",
1717
"dnt": ".github/deno-to-node.ts"
1818
},
1919
"lint": {

0 commit comments

Comments
 (0)