Skip to content

Commit

Permalink
build(.github/workflows/build-test-deploy.yml): fix peer dependency i…
Browse files Browse the repository at this point in the history
…nstallation
  • Loading branch information
Xunnamius committed Jan 21, 2021
1 parent 9b2e7a4 commit 12e5bbe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Lint
run: npm run lint
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Test unit
run: INCLUDE_EXTERNALS=true npm run test-unit
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Build distributables
run: npm run build-dist
Expand Down Expand Up @@ -400,7 +400,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Build externals
run: npm run build-externals
Expand Down Expand Up @@ -447,7 +447,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Build distributables
run: npm run build-dist
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Build distributables
run: npm run build-dist
Expand Down Expand Up @@ -552,7 +552,7 @@ jobs:
npm ci
PEER_DEPS=$(node -e 'console.log(Object.entries(require("./package.json").peerDependencies || {}).map(([p,v]) => `${p}@${v}`).join(" "))')
! [ -z "$DEBUG" ] && echo "(install targets) PEER_DEPS='$PEER_DEPS'" || true
! [ -z "$PEER_DEPS"] && npm install --no-save $PEER_DEPS || true
! [ -z "$PEER_DEPS" ] && npm install --no-save $PEER_DEPS || true
- name: Pre source formatting
run: npm run format
Expand Down

0 comments on commit 12e5bbe

Please sign in to comment.