Skip to content

feat(expo): update for 1.0.3 #210

feat(expo): update for 1.0.3

feat(expo): update for 1.0.3 #210

Workflow file for this run

name: PR Build & Test
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "src/**"
- "content/**"
- "scripts/**"
- "test/**"
- "package.json"
- "next.config.ts"
- ".github/workflows/docs-build-pr.yml"
permissions:
contents: read
concurrency:
group: docs-build-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Prepare for Build
run: bun run generate:test-wrangler
- name: Build
run: bun run build:cf
- name: Test
run: bun test