Skip to content

Commit

Permalink
Updated CI
Browse files Browse the repository at this point in the history
  • Loading branch information
notangelmario committed Aug 7, 2023
1 parent f9c9881 commit 55928c9
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.26.X
deno-version: v1.34.X

- run: deno task test
- run: deno task test
3 changes: 0 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"tasks": {
"test": "deno test --allow-env --allow-write --allow-read"
},
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/"
}
}
93 changes: 93 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ export {
extname,
join,
resolve,
} from "https://deno.land/std@0.153.0/path/mod.ts";
} from "https://deno.land/std@0.197.0/path/mod.ts";
export {
assert,
assertStringIncludes,
assertThrows,
} from "https://deno.land/std@0.145.0/testing/asserts.ts";
export { FakeTime } from "https://deno.land/std@0.145.0/testing/time.ts";
export { ensureFile } from "https://deno.land/std@0.128.0/fs/mod.ts";
} from "https://deno.land/std@0.197.0/testing/asserts.ts";
export { FakeTime } from "https://deno.land/std@0.197.0/testing/time.ts";
export { ensureFile } from "https://deno.land/std@0.197.0/fs/mod.ts";
export { filterFiles } from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit 55928c9

Please sign in to comment.