We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f21e22 commit a607007Copy full SHA for a607007
.github/workflows/check.yml
@@ -84,12 +84,17 @@ jobs:
84
working-directory: apps/test-app
85
# Integration tests (Android)
86
- name: Clone patched Hermes version
87
- if: matrix.variant == 'android-tests'
88
shell: bash
89
run: |
90
REACT_NATIVE_OVERRIDE_HERMES_DIR=$(npx react-native-node-api vendor-hermes --silent)
91
echo "REACT_NATIVE_OVERRIDE_HERMES_DIR=$REACT_NATIVE_OVERRIDE_HERMES_DIR" >> $GITHUB_ENV
92
+ - name: Setup Hermes cache
93
+ uses: actions/cache@v4
94
+ id: hermes-cache
95
+ with:
96
+ path: ${{ env.REACT_NATIVE_OVERRIDE_HERMES_DIR }}
97
+ key: ${{ runner.os }}-hermes
98
- name: Setup Android Emulator cache
99
if: matrix.variant == 'android-tests'
100
uses: actions/cache@v4
0 commit comments