Bump the npm_and_yarn group across 4 directories with 5 updates #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JS ML-powered queries tests | |
on: | |
push: | |
paths: | |
- "javascript/ql/experimental/adaptivethreatmodeling/**" | |
- .github/workflows/js-ml-tests.yml | |
- .github/actions/fetch-codeql/action.yml | |
- codeql-workspace.yml | |
branches: | |
- main | |
- "rc/*" | |
pull_request: | |
paths: | |
- "javascript/ql/experimental/adaptivethreatmodeling/**" | |
- .github/workflows/js-ml-tests.yml | |
- .github/actions/fetch-codeql/action.yml | |
- codeql-workspace.yml | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: javascript/ql/experimental/adaptivethreatmodeling | |
jobs: | |
qltest: | |
name: Test QL | |
runs-on: ubuntu-latest-xl | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/fetch-codeql | |
- name: Install pack dependencies | |
run: | | |
for pack in modelbuilding src test; do | |
codeql pack install --mode verify -- "${pack}" | |
done | |
- name: Cache compilation cache | |
id: query-cache | |
uses: ./.github/actions/cache-query-compilation | |
with: | |
key: js-ml-test | |
- name: Check QL compilation | |
run: | | |
codeql query compile \ | |
--check-only \ | |
--ram 50000 \ | |
--additional-packs "${{ github.workspace }}" \ | |
--threads=0 \ | |
--compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \ | |
-- \ | |
lib modelbuilding src | |
- name: Run QL tests | |
run: | | |
codeql test run \ | |
--threads=0 \ | |
--ram 50000 \ | |
--additional-packs "${{ github.workspace }}" \ | |
--compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \ | |
-- \ | |
test |