From 48652ac12cb585f09cb5dcf77ba580471c54bff8 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 1 Aug 2023 13:49:00 -0700 Subject: [PATCH] fix: be explicit about what dir we want to know has changed files --- .github/workflows/javascript-format-build.yml | 12 ++++++------ web/.eslintignore | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/javascript-format-build.yml b/.github/workflows/javascript-format-build.yml index 20a045870..c40f12830 100644 --- a/.github/workflows/javascript-format-build.yml +++ b/.github/workflows/javascript-format-build.yml @@ -37,12 +37,12 @@ jobs: with: files_yaml: | src: - - '**.js' - - '**.ts' - - '**.tsx' - - '**.jsx' - - '**.css' - - '**.md' + - 'web/**.js' + - 'web/**.ts' + - 'web/**.tsx' + - 'web/**.jsx' + - 'web/**.css' + - 'web/**.md' - name: Cache node modules uses: actions/cache@v3 diff --git a/web/.eslintignore b/web/.eslintignore index bb613d599..619195794 100644 --- a/web/.eslintignore +++ b/web/.eslintignore @@ -1,3 +1,4 @@ # Ignore artifacts: node_modules out +../static/web