Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Jun 18, 2023
1 parent 4125fc4 commit 0a56c57
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Setup Deno
run: |
curl -fsSL https://deno.land/x/install/install.sh | sh ${{ matrix.deno == 'old' && '-s v1.27.0' || '' }}
curl -fsSL https://deno.land/x/install/install.sh | sh ${{ matrix.deno == 'old' && '-s v1.34.2' || '' }}
echo "$HOME/.deno/bin" >> $${{ runner.os == 'Windows' && 'env:' || '' }}GITHUB_PATH
- name: Upgrade to Deno canary
if: matrix.deno == 'canary'
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.*
!/.gitignore
deno.lock
2 changes: 1 addition & 1 deletion algorithm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type Algorithm =
| "RS512"
| "ES256"
| "ES384"
// P-521 is not yet supported.
// | "ES512" //is not yet supported.
// https://github.com/denoland/deno/blob/main/ext/crypto/00_crypto.js
| "none";

Expand Down
12 changes: 12 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"tasks": {
"test": "deno test --check --unstable --allow-all"
},
"compilerOptions": {
"verbatimModuleSyntax": true,
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"checkJs": true
}
}
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as base64url from "https://deno.land/std@0.161.0/encoding/base64url.ts";
export * as base64url from "https://deno.land/std@0.192.0/encoding/base64url.ts";

0 comments on commit 0a56c57

Please sign in to comment.