Skip to content

fix(WC2): Update dapps with support for Wallet Connect v2 #6

fix(WC2): Update dapps with support for Wallet Connect v2

fix(WC2): Update dapps with support for Wallet Connect v2 #6

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install
run: npm ci --legacy-peer-deps
- name: Build
run: npm run build
env:
NODE_PATH: 'src'
NODE_OPTIONS: '--max-old-space-size=8192'
- name: Test
run: npm run test:coverage
if: ${{ always() }}
- name: report coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}