add noble/curves for es256 jwt verification #741
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: PR test check | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
build-check: | |
strategy: | |
fail-fast: false | |
matrix: | |
project: [client] | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ matrix.project }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Install Dependencies | |
run: npm install | |
- name: Tests Check | |
run: npm run test run |