Skip to content

Commit

Permalink
install globals if needed, maybe this will work?
Browse files Browse the repository at this point in the history
  • Loading branch information
jonchurch committed Jul 7, 2024
1 parent 28f10ef commit d5c7cb1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/experimental.ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ jobs:
# Use supported versions of our testing tools under older versions of Node
include:
- node-version: "0.10.x"
npm-i: "[email protected] [email protected] [email protected] [email protected]"
npm-i: "[email protected] [email protected] [email protected]"
npm-i-g: "[email protected]"
- node-version: "0.12.x"
npm-i: "[email protected] [email protected] [email protected] [email protected]"
npm-i: "[email protected] [email protected] [email protected]"
npm-i-g: "[email protected]"
- node-version: "4"
npm-i: "[email protected] [email protected] [email protected]"
- node-version: "5"
Expand Down Expand Up @@ -126,7 +128,7 @@ jobs:
with:
persist-credentials: false

- name: Setup Node.js
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
Expand All @@ -148,6 +150,10 @@ jobs:
if: ${{ matrix.npm-i != '' }}
run: npm install --save-dev ${{ matrix.npm-i }}

-name: Install Globals if needed
if: ${{ matrix.npm-i-g != '' }}
run: npm install -g ${{ matrix.npm-i-g }}

- name: Remove non-test dependencies
run: npm rm --silent --save-dev connect-redis

Expand Down

0 comments on commit d5c7cb1

Please sign in to comment.