Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install --immutable

- name: Build
run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/interact-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install --immutable

- name: Build motion package
run: yarn workspace @wix/motion build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/interactdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
NPQ_PKG_MGR=yarn npx npq install
NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build packages and landing page libs
run: ./scripts/build-landing.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/motion-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install --immutable
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install --immutable

- name: Build motion package
run: yarn workspace @wix/motion build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-interact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build motion package
run: yarn workspace @wix/motion build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-motion-presets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build motion-presets package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-motion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build motion package
run: yarn workspace @wix/motion build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-splittext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build splittext package
run: yarn workspace @wix/splittext build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: NPQ_PKG_MGR=yarn npx npq install
run: NPQ_PKG_MGR=yarn npx npq install --allow-non-interactive-install

- name: Build motion package
run: yarn workspace @wix/motion build
Expand Down
Loading