Skip to content

Credit card and contact autofill in inline menu #81

Credit card and contact autofill in inline menu

Credit card and contact autofill in inline menu #81

name: Quality Checks
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality_checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.15.1'
cache: 'npm'
- name: Install build dependencies
run : |
npm install -g node-pre-gyp jest
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Lint
run : npm run lint
- name: Test
run: |
cd apps/browser/
yarn test --runInBand