From 427f4ecdd7d3007f6dc29de3d3f62b10a1aa7dce Mon Sep 17 00:00:00 2001 From: "A. Singh" <32884734+A-5ingh@users.noreply.github.com> Date: Mon, 16 Oct 2023 13:06:00 -0400 Subject: [PATCH] fix: issue with lint and prettier during js format build (#3362) --- .github/workflows/javascript-format-build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/javascript-format-build.yml b/.github/workflows/javascript-format-build.yml index aed046748..2fb03d73b 100644 --- a/.github/workflows/javascript-format-build.yml +++ b/.github/workflows/javascript-format-build.yml @@ -40,17 +40,13 @@ jobs: id: changed-files uses: tj-actions/changed-files@v39 with: + path: 'web' files_ignore: | static/** web/next.config.js files_yaml: | src: - - 'web/**.js' - - 'web/**.ts' - - 'web/**.tsx' - - 'web/**.jsx' - - 'web/**.css' - - 'web/**.md' + - '**/*.{js,ts,tsx,jsx,css,md}' - name: Cache node modules uses: actions/cache@v3