mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
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@v4
|
|
|
|
- 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 |