Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use fixed npm version #454

Merged
merged 1 commit into from
Jun 23, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
cache: pnpm
cache-dependency-path: "**/pnpm-lock.yaml"
- name: bump npm
run: npm i -g npm
run: npm i -g npm@8.12.2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
cache: pnpm
cache-dependency-path: "**/pnpm-lock.yaml"
- name: bump npm
run: npm i -g npm
run: npm i -g npm@8.12.2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
cache: pnpm
cache-dependency-path: "**/pnpm-lock.yaml"
- name: bump npm
run: npm i -g npm
run: npm i -g npm@8.12.2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
git config user.email "team-live@ledger.fr"
git config user.name "Team Live"
- name: Bump npm to latest
run: npm i -g npm
run: npm i -g npm@8.12.2
- name: TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
ruby-version: 2.7
bundler-cache: true
- name: Bump npm to latest
run: npm i -g npm
run: npm i -g npm@8.12.2
- name: TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v1
with:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
ruby-version: 2.7
bundler-cache: true
- name: Bump npm to latest
run: npm i -g npm
run: npm i -g npm@8.12.2
- name: TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
ruby-version: 2.7
- name: Bump npm to latest
run: npm i -g npm
run: npm i -g npm@8.12.2
- name: Install dependencies
run: pnpm i --filter="live-mobile..." --filter="ledger-live" --no-frozen-lockfile --unsafe-perm
- name: Run linter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
bundler-cache: true
- name: Bump npm to latest
run: |
npm i -g npm
npm i -g npm@8.12.2
npm --version
- name: TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v1
Expand Down
2 changes: 1 addition & 1 deletion tools/actions/composites/build-desktop/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
using: "composite"
steps:
- name: bump npm
run: npm i -g npm
run: npm i -g npm@8.12.2
shell: bash
- name: install dependencies
if: ${{ inputs.os != 'mac' }}
Expand Down