Skip to content

fix interaction with android #89

fix interaction with android

fix interaction with android #89

Workflow file for this run

name: ci
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
quality:
name: Check quality
runs-on: ubuntu-latest
strategy:
matrix:
command: ['pnpm build', 'pnpm lint']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.1
- uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
node-version-file: '.nvmrc'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: CI commands
run: ${{ matrix.command }}