We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbeafa commit f7c5d84Copy full SHA for f7c5d84
1 file changed
.github/workflows/codeql.yml
@@ -102,6 +102,14 @@ jobs:
102
- name: Setup
103
uses: ./.github/actions/setup
104
105
+ - name: Setup Node.js
106
+ uses: actions/setup-node@v4
107
+ with:
108
+ node-version: '22'
109
+
110
+ - name: Install Dependencies
111
+ run: npm install
112
113
- name: Install JDK
114
if: env.turbo_cache_hit != 1
115
uses: actions/setup-java@v4
@@ -130,7 +138,7 @@ jobs:
130
138
cd example
131
139
yarn install
132
140
cd android
133
- ./gradlew clean
141
+ ./gradlew clean --no-daemon --no-build-cache
134
142
135
143
- name: Perform CodeQL Analysis
136
144
uses: github/codeql-action/analyze@v4
0 commit comments