From 436215af3ed4c96c3d21ba6f0838c59176d31a71 Mon Sep 17 00:00:00 2001 From: Ivan Shumkov Date: Fri, 3 Nov 2023 14:05:56 +0700 Subject: [PATCH] ci: fix js build artifacts list --- .github/workflows/tests-build-js.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-build-js.yml b/.github/workflows/tests-build-js.yml index f192a99d1fe..68a892a42f7 100644 --- a/.github/workflows/tests-build-js.yml +++ b/.github/workflows/tests-build-js.yml @@ -59,11 +59,16 @@ jobs: find . -name '.gitignore' -exec rm -f {} + echo ".yarn/unplugged" >> .gitignore echo "target" >> .gitignore + echo "node_modules" >> .gitignore + echo ".nyc_output" >> .gitignore + echo ".idea" >> .gitignore + echo ".ultra.cache.json" >> .gitignore + echo "db/*" >> .gitignore if: ${{ steps.cache.outputs.cache-hit != 'true' }} - name: Get modified files id: diff - run: git diff --name-only + run: git ls-files --others --exclude-standard if: ${{ steps.cache.outputs.cache-hit != 'true' }} - name: Create an archive of built files