Added Bitcoin WIF & Sui Bech32 private key import/export #436
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: # Allows manual invocation | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| directory: | |
| [ | |
| 'auth', | |
| 'export', | |
| 'import', | |
| 'export-and-sign', | |
| 'oauth-origin', | |
| 'oauth-redirect', | |
| ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 | |
| - name: Install Node.js | |
| uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 | |
| with: | |
| node-version: 18 | |
| - name: Install Dependencies for ${{ matrix.directory }} | |
| working-directory: ./${{ matrix.directory }} | |
| run: npm install | |
| - name: Check Provenance Attestations for ${{ matrix.directory }} | |
| working-directory: ./${{ matrix.directory }} | |
| run: npm audit signatures | |
| - name: Run Tests for ${{ matrix.directory }} | |
| working-directory: ./${{ matrix.directory }} | |
| run: npm test |