Skip to content

Commit

Permalink
ci: run pnpm i on v1 examples too
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed Jun 24, 2024
1 parent 5a33127 commit 1434734
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 1434734

Please sign in to comment.