Skip to content

Commit

Permalink
Fixup for previosu patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
dokterbob committed Oct 17, 2024
1 parent 8b9ab2d commit 95b99ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/actions/pnpm-node-install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ inputs:
pnpm-version:
description: pnpm version
required: true
pnpm-skip-install:
description: Skip install.
required: false
default: false
pnpm-install-args:
description: Extra arguments for pnpm install, e.g. --no-frozen-lockfile.

Expand All @@ -25,3 +29,4 @@ runs:
- name: Install JS dependencies
run: pnpm install ${{ inputs.pnpm-install-args }}
shell: bash
if: ${{ !inputs.pnpm-skip-install }}
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
with:
node-version: 22.7.0
pnpm-version: 9.7.0
pnpm-install-args: --no-frozen-lockfile
- name: Install Cypress
skip-install: true
- name: Install depdendencies and Cypress
uses: cypress-io/github-action@v6
with:
runTests: false
Expand Down

0 comments on commit 95b99ab

Please sign in to comment.