Gate tools: toolcache
behind FF
#6587
Workflow file for this run
This file contains hidden or 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
# Tests that the generated code scanning config file contains the expected contents | |
name: Code-Scanning config CLI tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Diff informed queries add an additional query filter which is not yet | |
# taken into account by these tests. | |
CODEQL_ACTION_DIFF_INFORMED_QUERIES: false | |
on: | |
push: | |
branches: | |
- main | |
- releases/v* | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
schedule: | |
- cron: '0 5 * * *' | |
workflow_dispatch: {} | |
defaults: | |
run: | |
shell: bash | |
< 8000 /tr> | |
jobs: | |
code-scanning-config-tests: | |
if: github.triggering_actor != 'dependabot[bot]' | |
continue-on-error: true | |
permissions: | |
contents: read | |
packages: read | |
security-events: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
version: linked | |
- os: ubuntu-latest | |
version: default | |
- os: ubuntu-latest | |
version: nightly-latest | |
# Code-Scanning config not created because environment variable is not set | |
name: Code Scanning Configuration tests | |
timeout-minutes: 45 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v5 | |
- name: Set up Node.js | |
uses: actions/setup-node@v5 | |
with: | |
node-version: 24 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Prepare test | |
id: prepare-test | |
uses: ./.github/actions/prepare-test | |
with: | |
version: ${{ matrix.version }} | |
- name: Empty file | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: "{}" | |
languages: javascript | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Packs from input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
packs: codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Packs from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
packs: + codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries from input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }] | |
} | |
languages: javascript | |
queries: ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }] | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from input with + | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }], | |
"packs": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: + codeql-testing/codeql-pack1@1.0.0, codeql-testing/codeql-pack2 | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" }], | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ] | |
} | |
} | |
languages: javascript | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config overriden by input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"queries": [{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }], | |
"packs": ["codeql/javascript-queries"] | |
} | |
languages: javascript | |
queries: ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: codeql/javascript-queries | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Queries and packs from config merging with input | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2", "codeql/javascript-queries" ] | |
}, | |
"queries": [ | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql" }, | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" } | |
] | |
} | |
languages: javascript | |
queries: + ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
packs: + codeql/javascript-queries | |
config-file-test: .github/codeql/queries-and-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Multi-language packs from config | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"packs": { | |
"javascript": ["codeql-testing/codeql-pack1@1.0.0", "codeql-testing/codeql-pack2" ], | |
"ruby": ["codeql/ruby-queries"] | |
}, | |
"queries": [ | |
{ "uses": "./codeql-qlpacks/complex-javascript-qlpack/foo2/show_ifs.ql" } | |
] | |
} | |
languages: javascript,ruby | |
config-file-test: .github/codeql/multi-language-packs-config.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} | |
- name: Other config properties | |
if: success() || failure() | |
uses: ./../action/.github/actions/check-codescanning-config | |
with: | |
expected-config-file-contents: | | |
{ | |
"name": "Config using all properties", | |
"packs": ["codeql/javascript-queries" ], | |
"disable-default-queries": true, | |
"paths-ignore": ["xxx"], | |
"paths": ["yyy"] | |
} | |
languages: javascript | |
packs: + codeql/javascript-queries | |
config-file-test: .github/codeql/other-config-properties.yml | |
tools: ${{ steps.prepare-test.outputs.tools-url }} |