Skip to content

Add Expo cookbook (SDK 53, React 19) #212

Add Expo cookbook (SDK 53, React 19)

Add Expo cookbook (SDK 53, React 19) #212

Workflow file for this run

name: CI tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
- run: corepack enable
- run: yarn install
- name: Build gl-react packages
run: |
for d in packages/gl-react packages/gl-react-dom packages/gl-react-headless; do
yarn workspace gl-react-dev exec babel --root-mode upward --source-maps --extensions '.ts,.tsx' -d "$d/lib" "$d/src"
done
- run: xvfb-run -s "-ac -screen 0 1280x1024x24" yarn test