Skip to content

Remove certain compatibility logic for HTML and CSS props in favor of RN natively supported props #1009

Remove certain compatibility logic for HTML and CSS props in favor of RN natively supported props

Remove certain compatibility logic for HTML and CSS props in favor of RN natively supported props #1009

Workflow file for this run

name: tests
on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize, reopened]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20.x'
- run: npm install
- run: npm run format:report
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20.x'
- run: npm install
- run: npm run build
- run: npm run flow
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20.x'
- run: npm install
- run: npm run lint:report
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20.x'
- run: npm install
- run: npm run build
- run: npm run jest:report -- --runInBand