From 3729bcf7e9e3dbf06fc70e81ab8339b957e56413 Mon Sep 17 00:00:00 2001 From: LeoTM <1881059+leotm@users.noreply.github.com> Date: Wed, 3 Jun 2026 14:35:37 +0100 Subject: [PATCH] Add GHA job step to run template unit tests Resolve: https://github.com/react-native-community/template/issues/225 --- .github/workflows/tests.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 4801c49..a8c71b2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -19,3 +19,5 @@ jobs: node-version: 22 - name: Run unit tests run: npm install && npm test + - name: Run template unit tests + run: cd template && npm install && npm test