fix(shadow*): replace depracated shadow props with boxShadow #691
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
push: | |
branches: | |
- next | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Check everything! | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install and compile | |
run: yarn | |
- name: build | |
run: yarn build | |
- name: lint | |
run: yarn lint | |
- name: format check | |
run: yarn format:check | |
- name: type check example | |
run: yarn workspace expo-example check | |
- name: test | |
run: yarn test |