fix: Fix returning arrays of primitives not being properly sized in J… #606
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |