From 14347343e0a7c65201ea091fce8975cf99275b2f Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 24 Jun 2024 17:17:19 +0200 Subject: [PATCH] ci: run pnpm i on v1 examples too --- .github/workflows/test-action.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 01907c46d3..172fe99fe0 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -36,10 +36,13 @@ jobs: node-version: lts/* cache: pnpm - # example-with-tauri tests the auto installation of the tauri cli + # TODO: test the auto installation of the tauri cli - name: install example dependencies - run: pnpm install - working-directory: ./.github/fixtures/example-v1 + run: | + cd ./.github/fixtures/example-v1 + pnpm install + cd ../example-with-tauri-v1 + pnpm install # rust - name: install Rust stable @@ -126,7 +129,7 @@ jobs: node-version: lts/* cache: pnpm - # TODO: example-with-tauri tests the auto installation of the tauri cli + # TODO: test the auto installation of the tauri cli - name: install example dependencies run: | cd ./.github/fixtures/example-v2