From 835c864f41922c85cb027953f248e7f4f7e07086 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Apr 2026 04:33:08 +0000 Subject: [PATCH] ci: remove node_modules before extraction to avoid tar conflicts --- .github/workflows/ci-bundling-trial.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci-bundling-trial.yml b/.github/workflows/ci-bundling-trial.yml index 2230132fde..5ea848c10f 100644 --- a/.github/workflows/ci-bundling-trial.yml +++ b/.github/workflows/ci-bundling-trial.yml @@ -67,6 +67,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -103,6 +104,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -139,6 +141,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -175,6 +178,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -211,6 +215,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -247,6 +252,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -283,6 +289,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash' @@ -319,6 +326,7 @@ jobs: - name: 'Extract Node Modules' run: | + rm -rf node_modules tar -xzf node_modules.tar.gz rm node_modules.tar.gz shell: 'bash'