From 866e92558c15e56d5fec10fa8eb00f0a9b60f342 Mon Sep 17 00:00:00 2001 From: erik-krogh Date: Thu, 10 Nov 2022 17:57:45 +0100 Subject: [PATCH] broaden the file pattern used in the format check to ensure js-ml is included --- .github/workflows/compile-queries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile-queries.yml b/.github/workflows/compile-queries.yml index 73d1e5ac2cc..149cb052de9 100644 --- a/.github/workflows/compile-queries.yml +++ b/.github/workflows/compile-queries.yml @@ -46,7 +46,7 @@ jobs: with: channel: 'release' - name: check formatting - run: codeql query format */ql/{src,lib,test}/**/*.{qll,ql} --check-only + run: codeql query format */ql/**/*.{qll,ql} --check-only - name: compile queries - check-only # run with --check-only if running in a PR (github.sha != main) if : ${{ github.event_name == 'pull_request' }}