Skip to content

feat: update Mobile Wallet Adapter lesson #1599

feat: update Mobile Wallet Adapter lesson

feat: update Mobile Wallet Adapter lesson #1599

Workflow file for this run

name: Formatting / Lint
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
Format:
name: Test formatting via prettier/lint...
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js node
uses: actions/setup-node@v2
with:
node-version: "18"
- name: before_install
run:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
&& sudo sysctl -p
- name: installing yarn
run: yarn install
- name: prettier:check
run: yarn prettier
- name: lint
run: yarn lint