verify signer is secp256k1 address #13
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: pnpm | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
pnpm: | |
name: pnpm | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["18", "lts/*", "latest"] | |
run: | |
- pnpm build | |
- pnpm test | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.6.12 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run Command | |
env: | |
CI: false | |
run: ${{ matrix.run }} |