Skip to content

Commit

Permalink
Merge pull request #18 from krutoo/retry-revision
Browse files Browse the repository at this point in the history
Retry middleware - revision
  • Loading branch information
krutoo authored Oct 30, 2024
2 parents ba9049b + 38177cd commit 142da43
Show file tree
Hide file tree
Showing 10 changed files with 252 additions and 261 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-jsr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Unit tests
run: |
deno test
deno task test
- name: Set version
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Unit tests
run: |
deno test
deno task test
- uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: Unit tests
run: |
deno test
deno task test
8 changes: 4 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"version": "0.0.0",
"tasks": {
"lint": "deno check src/**/*.ts && deno lint && deno fmt --check",
"test": "deno test --allow-net",
"build-npm": "deno run -A scripts/build-npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.0",
"@std/assert": "jsr:@std/assert@^0.220.1",
"@std/expect": "jsr:@std/expect@^1.0.5",
"@std/testing": "jsr:@std/testing@^0.220.1",
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/expect": "jsr:@std/expect@^1.0.6",
"@std/testing": "jsr:@std/testing@^1.0.3",
"#fetch": "./src/fetch/mod.ts",
"#response": "./src/response/mod.ts"
},
Expand Down
Loading

0 comments on commit 142da43

Please sign in to comment.