Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-deps-rn-next/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ runs:

- name: Switch to React Native Next
run: |
yarn add -D react-native@next @react-native/babel-preset@next
yarn add -D react-native@next @react-native/babel-preset@next react@19.2.3
shell: bash
96 changes: 96 additions & 0 deletions .github/workflows/nightly-v13.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Nightly v13 - React Native Checks
on:
# Runs every night at 4 AM
schedule:
- cron: '0 4 * * *'
workflow_dispatch:

# Set minimal permissions by default
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'v13-stable')}}

jobs:
lint:
runs-on: ubuntu-latest
name: Lint - ${{ matrix.rn-version }}
strategy:
matrix:
rn-version: [latest, next, nightly]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: v13-stable

- name: Setup Node.js and deps (latest)
if: matrix.rn-version == 'latest'
uses: ./.github/actions/setup-deps-rn-latest

- name: Setup Node.js and deps (next)
if: matrix.rn-version == 'next'
uses: ./.github/actions/setup-deps-rn-next

- name: Setup Node.js and deps (nightly)
if: matrix.rn-version == 'nightly'
uses: ./.github/actions/setup-deps-rn-nightly

- name: Lint
run: yarn lint

typecheck:
runs-on: ubuntu-latest
name: Typecheck - ${{ matrix.rn-version }}
strategy:
matrix:
rn-version: [latest, next, nightly]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: v13-stable

- name: Setup Node.js and deps (latest)
if: matrix.rn-version == 'latest'
uses: ./.github/actions/setup-deps-rn-latest

- name: Setup Node.js and deps (next)
if: matrix.rn-version == 'next'
uses: ./.github/actions/setup-deps-rn-next

- name: Setup Node.js and deps (nightly)
if: matrix.rn-version == 'nightly'
uses: ./.github/actions/setup-deps-rn-nightly

- name: Typecheck
run: yarn typecheck

test:
runs-on: ubuntu-latest
name: Test - ${{ matrix.rn-version }}
strategy:
matrix:
rn-version: [latest, next, nightly]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: v13-stable

- name: Setup Node.js and deps (latest)
if: matrix.rn-version == 'latest'
uses: ./.github/actions/setup-deps-rn-latest

- name: Setup Node.js and deps (next)
if: matrix.rn-version == 'next'
uses: ./.github/actions/setup-deps-rn-next

- name: Setup Node.js and deps (nightly)
if: matrix.rn-version == 'nightly'
uses: ./.github/actions/setup-deps-rn-nightly

- name: Test
run: yarn test:ci
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: React Native Nightly
name: Nightly - React Native Checks
on:
# Runs every night at 4 AM
schedule:
Expand Down