build(deps): bump jose from 4.9.2 to 4.15.5 #39
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: test | |
on: | |
pull_request: | |
push: | |
branches: [master, main] | |
workflow_dispatch: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: NodeJS ${{ matrix.node }} lint | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup nodejs | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- run: npm install | |
- run: npm run dtslint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ '16', '17', '18'] | |
name: NodeJS ${{ matrix.node }} test | |
env: | |
MB_ACCESSKEY: test_iQpAp0KCs5GCsMpDhIx2leuNB | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup nodejs | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install | |
- run: npm run test |