Skip to content

feat: wiring support for P-384 and P-521 #56

feat: wiring support for P-384 and P-521

feat: wiring support for P-384 and P-521 #56

Workflow file for this run

name: CI
on: [pull_request]
jobs:
ci:
runs-on: ubuntu-latest
permissions:
pull-requests: write # to be able to comment on released pull requests
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm clean-install
- name: Validate Commits Messages
if: github.event_name == 'pull_request'
run: npx --no-install commitlint --verbose --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }}
- name: Lint
run: npm run lint
- name: Test
run: npm test