Skip to content

chore(Android): fix lint warning of CustomToolbar component #3417

chore(Android): fix lint warning of CustomToolbar component

chore(Android): fix lint warning of CustomToolbar component #3417

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
install-and-lint:
runs-on: ubuntu-latest
concurrency:
group: install-and-lint-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install node dependencies
run: yarn
- name: Format code
run: |
yarn format
- name: Run linter
run: |
yarn lint
- name: Check types
run: |
yarn check-types