Skip to content

fix: Fix returning arrays of primitives not being properly sized in J… #606

fix: Fix returning arrays of primitives not being properly sized in J…

fix: Fix returning arrays of primitives not being properly sized in J… #606

Workflow file for this run

name: Run Nitrogen
on:
push:
branches:
- main
paths:
- '.github/workflows/run-nitrogen.yml'
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.jsx'
- '**/*.json'
- '**/*.lockb'
- '**/package.json'
- 'packages/nitrogen/**'
pull_request:
paths:
- '.github/workflows/run-nitrogen.yml'
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.jsx'
- '**/*.json'
- '**/*.lockb'
- '**/package.json'
- 'packages/nitrogen/**'
jobs:
lint:
name: Run Nitrogen for example module (react-native-nitro-image)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install npm dependencies (bun)
run: bun install
- name: Build all packages
run: bun run build
- name: Run nitro-codegen in packages/react-native-nitro-image
working-directory: packages/react-native-nitro-image
run: bun i && bun specs-ci
- name: Verify no files have changed after nitrogen
run: git diff --exit-code HEAD -- . ':(exclude)bun.lockb'