Skip to content

fix: typepat

fix: typepat #684

Workflow file for this run

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