Skip to content

v12.10.9: fix some mobile and walletconnect v2 edge-cases #1381

v12.10.9: fix some mobile and walletconnect v2 edge-cases

v12.10.9: fix some mobile and walletconnect v2 edge-cases #1381

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
run: |
npm install
- name: yarn lint
run: |
yarn lint