Add Signature-Agent within Signature-Input and test vectors #23
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: Pull Request | |
on: | |
push: | |
pull_request: | |
jobs: | |
check: | |
timeout-minutes: 5 | |
strategy: | |
matrix: | |
os: [ | |
ubuntu-24.04, | |
# windows-latest, | |
# macos-latest, | |
] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "npm" | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint | |
- run: npm run test |