Skip to content

fix: safe-area insets and touch targets around the newsletter digests screen #1087

fix: safe-area insets and touch targets around the newsletter digests screen

fix: safe-area insets and touch targets around the newsletter digests screen #1087

Workflow file for this run

name: Lint & Test
on:
pull_request:
push:
branches:
- development
concurrency:
group: test-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
name: Lint & Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Typecheck
run: yarn typecheck
- name: Unit tests
run: yarn test:ci