Revert "Updates as per wasm bindings and use constant time encoding f… #256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
test_bbs: | |
name: Test BBS | |
runs-on: ${{matrix.os}} | |
env: | |
TEST_SIGNATURE_SCHEME: 'BBS' | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
test_bbs_plus: | |
name: Test BBS+ | |
runs-on: ${{matrix.os}} | |
env: | |
TEST_SIGNATURE_SCHEME: 'BBS+' | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
test_ps: | |
name: Test PS | |
runs-on: ${{matrix.os}} | |
env: | |
TEST_SIGNATURE_SCHEME: 'PS' | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
test_bddt16: | |
name: Test BDDT16 | |
runs-on: ${{matrix.os}} | |
env: | |
TEST_SIGNATURE_SCHEME: 'BDDT16' | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x ] | |
os: [ ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --frozen-lockfile | |
- run: yarn test |