Skip to content

Support for ES256/ES384/ES512 #256

Support for ES256/ES384/ES512

Support for ES256/ES384/ES512 #256

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: install
run: |
npm install -g npm@9
npm install
- name: test
run: |
npm run prettier:check
npm run lint:check
npm run test:unit
npm run pack-for-tests
npm run test:install
npm run test:import
npm run test:browser
env:
CI: "true"