Skip to content

Commit

Permalink
✅ - Install PNPM in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland Peelen committed May 9, 2024
1 parent cb35cfc commit 7149c5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ jobs:
run: cargo build --release
- name: Run unit test
run: cargo test
- name: Install PNPM
run: npm i -g pnpm
- name: Install Yarn Dependencies
run: cd ./tests/testrepo_yarn && yarn install
- name: Install Pnpm Dependencies
- name: Install PNPM Dependencies
run: cd ./tests/testrepo_pnpm && pnpm install
- name: Run Test
run: ./tests/suite-ci.sh
4 changes: 2 additions & 2 deletions tests/suite-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ bold "Yarn Tests"
./compile.sh "testrepo_yarn" \
&& ./watch.sh "testrepo_yarn" \
&& ./lock.sh "testrepo_yarn" \
&& ./suffix.sh "testrepo_yarn"
&& ./suffix.sh "testrepo_yarn";

bold "PNPM Tests"
./compile.sh "testrepo_pnpm" \
&& ./watch.sh "testrepo_pnpm" \
&& ./lock.sh "testrepo_pnpm" \
&& ./suffix.sh "testrepo_pnpm"
&& ./suffix.sh "testrepo_pnpm";

0 comments on commit 7149c5e

Please sign in to comment.