Skip to content

feat: Integrate Apollo back + make secp256k1 keys part of derivable abstraction #520

feat: Integrate Apollo back + make secp256k1 keys part of derivable abstraction

feat: Integrate Apollo back + make secp256k1 keys part of derivable abstraction #520

Workflow file for this run

name: Continuous integration
concurrency:
group: ${{ github.head_ref }}${{ github.ref }}-wallet-sdk
cancel-in-progress: true
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install
run: npm install
- name: Eslint
run: npx eslint .
- name: Build
run: npm run build
- name: Run coverage test
run: npm run coverage
- name: Npm audit
uses: oke-py/npm-audit-action@v2.4.4
with:
audit_level: moderate
create_issues: false
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Jest Coverage Comment
uses: MishaKav/jest-coverage-comment@v1.0.23
with:
coverage-summary-path: coverage/coverage-summary.json
junitxml-path: coverage/junit.xml
junitxml-title: JUnit
- name: Publish lcov report
uses: actions/upload-artifact@v3
with:
name: lcov-report.zip
path: coverage/lcov-report
if-no-files-found: error