Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Aug 13, 2022
1 parent c6c381c commit 29a6873
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
- uses: actions/checkout@master
- uses: denoland/setup-deno@main
with:
deno-version: "1.13.2"
deno-version: "1.24.3"
- name: Run linter
if: matrix.os == 'ubuntu-latest'
run: |
deno fmt --check
deno lint
- name: Check mod.ts
run: |
deno cache mod.ts
deno check mod.ts
- name: Run tests
run: |
deno test --allow-read --allow-run --doc --import-map=import_map.test.json
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { readAll } from "https://deno.land/std@0.106.0/io/util.ts";
export { deferred } from "https://deno.land/std@0.106.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.106.0/async/deferred.ts";
export { readAll } from "https://deno.land/std@0.152.0/io/util.ts";
export { deferred } from "https://deno.land/std@0.152.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.152.0/async/deferred.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.106.0/testing/asserts.ts";
} from "https://deno.land/std@0.152.0/testing/asserts.ts";

// @deno-types="https://esm.sh/[email protected]/index.d.ts"
export { default as td } from "https://esm.sh/[email protected]/dist/testdouble.js?no-check";

0 comments on commit 29a6873

Please sign in to comment.