chore(deps): bump get-func-name from 2.0.0 to 2.0.2 #432
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: | |
- main | |
- develop | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 6.0.1 | |
- name: Install dependencies | |
run: yarn install | |
- name: Generate ECDSA keys | |
run: | | |
openssl ecparam -genkey -name prime256v1 -noout -out jwt_private_key.pem | |
openssl ec -in jwt_private_key.pem -pubout -out jwt_public_key.pem | |
- name: Test and generate coverage | |
run: sudo yarn coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage/lcov.info |