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 5d93309 commit 24c2578Copy full SHA for 24c2578
.github/workflows/ql-for-ql-build.yml
@@ -14,12 +14,20 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v2
17
+ - name: Cache queries
18
+ id: cache-queries
19
+ uses: actions/cache@v2
20
+ with:
21
+ path: ${{ runner.temp }}/query-pack.zip
22
+ key: ${{ runner.os }}-queries-${{ hashFiles('**/*.ql*') }}
23
- name: Find codeql
24
+ if: steps.cache-queries.outputs.cache-hit != 'true'
25
id: find-codeql
26
uses: github/codeql-action/init@esbena/ql
27
with:
28
languages: javascript # does not matter
29
- name: Build query pack
30
31
run: |
32
cd ql/ql/src
33
"${CODEQL}" pack create
0 commit comments