mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
42 lines
941 B
YAML
42 lines
941 B
YAML
name: Validate Example Apps
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths: ['examples/**']
|
|
pull_request:
|
|
branches: ['**']
|
|
paths: ['examples/**']
|
|
|
|
# Set minimal permissions by default
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-example:
|
|
strategy:
|
|
matrix:
|
|
example: [basic, cookbook]
|
|
|
|
name: Test Example
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version: 24
|
|
cache: 'yarn'
|
|
|
|
- name: Install and build
|
|
run: yarn --cwd examples/${{ matrix.example }} install
|
|
|
|
- name: Type Check
|
|
run: yarn --cwd examples/${{ matrix.example }} typecheck
|
|
|
|
- name: Test
|
|
run: yarn --cwd examples/${{ matrix.example }} test
|