Skip to content

Commit

Permalink
Merge 77ad36c into 8a9a861
Browse files Browse the repository at this point in the history
  • Loading branch information
microshine committed Jun 15, 2022
2 parents 8a9a861 + 77ad36c commit b481fc0
Show file tree
Hide file tree
Showing 63 changed files with 1,003 additions and 826 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install SoftHSM
run: |
brew install softhsm
softhsm2-util --init-token --so-pin "12345" --pin "12345" --slot 0 --label "My slot 0"
- name: Install NSS
run: brew install nss

Expand All @@ -44,6 +44,9 @@ jobs:
- name: Run test with coverage
run: npm run coverage

- name: Find lcov.info file
run: find . -type f -name lcov.info

- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
6 changes: 6 additions & 0 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require:
- ts-node/register
extension:
- ts
spec":
- test/**/*.ts
13 changes: 13 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"reporter": [
"lcov",
"text-summary"
],
"include": [
"src/**/*.ts"
],
"extension": [
".ts",
".tsx"
]
}
250 changes: 0 additions & 250 deletions index.d.ts

This file was deleted.

0 comments on commit b481fc0

Please sign in to comment.