Skip to content

Commit

Permalink
feat: run codege tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Cipolleschi committed Sep 5, 2022
1 parent 092fe5b commit f9ae6a9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,29 @@ jobs:
- store_test_results:
path: ./reports/junit

# -----------------------
# JOBS: Codegen Tests
# -----------------------
test_codegen:
parameters:
executor:
type: executor
default: nodelts
executor: << parameters.executor >>
steps:
- checkout
- setup_artifacts
- run:
name: Install Yarn in codegen
command: |
cd packages/react-native-codegen
yarn install
- run:
name: Run Tests
command: yarn jest
- store_test_results:
path: ./reports/junit

# -------------------------
# JOBS: iOS Unit Tests
# -------------------------
Expand Down

0 comments on commit f9ae6a9

Please sign in to comment.