Skip to content

Commit

Permalink
Use pnpm instead of npm to install package in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
tnagorra committed Apr 12, 2024
1 parent 22ae2d5 commit 3eea9bc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: bahmutov/npm-install@v1
- uses: pnpm/action-setup@v3
with:
useLockFile: false
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Create test private key for signing alerts
run: ssh-keygen -m PKCS8 -t ecdsa -f $(pwd)/test-key
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: bahmutov/npm-install@v1
- uses: pnpm/action-setup@v3
with:
useLockFile: false
version: 8
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Run frontend component tests
run: npm run test:frontend

0 comments on commit 3eea9bc

Please sign in to comment.