-
-
Notifications
You must be signed in to change notification settings - Fork 16.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install globals if needed, maybe this will work?
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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 }} | ||
|
@@ -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 | ||
|
||
|