Skip to content

Commit

Permalink
Merge pull request #74 from transmute-industries/feat/address-73
Browse files Browse the repository at this point in the history
Fix NIST Curves
  • Loading branch information
OR13 authored Mar 7, 2021
2 parents b704ed8 + 6c61521 commit c1bef56
Show file tree
Hide file tree
Showing 70 changed files with 60,202 additions and 42,642 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/cd-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Pages

on:
push:
branches:
- master

jobs:
deploy-workbench:
if: "! contains(github.event.head_commit.message, '[skip ci]')"
name: Publish unstable release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Use Node 15
uses: actions/setup-node@v1
with:
node-version: 15.x

- name: Install
run: npm install

- name: Build
run: npm run build:demo

- name: Deploy workbench
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/workbench/build
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node 12
- name: Use Node 14
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x

- name: Install
run: npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
# https://github.com/actions/checkout/issues/118
- run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/master:refs/remotes/origin/master
- name: Use Node 12
- name: Use Node 14
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- name: Install
run: npm run install:ci

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"editor.formatOnSave": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.workingDirectories": [
{
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Demos:

- Web App: [https://did.key.transmute.industries](https://did.key.transmute.industries).

#### [did-key.js](./packages/did-key.js)
NIST Curves are only supported in node 15.

#### [did-key.js](./packages/did-key.js)

If you want to resolve all did keys, you need to install all of them:

Expand Down
Loading

0 comments on commit c1bef56

Please sign in to comment.