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

devops: unpin NPM on CI and use again version 8 #13765

Merged
merged 1 commit into from
Apr 26, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/component_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
# Component tests require Node.js 16+ (they require ESM via TS)
node-version: 16
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install --with-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@7
- run: npm i -g npm@8
- name: Deploy Canary
run: bash utils/build/deploy-trace-viewer.sh --canary
if: contains(github.ref, 'main')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: docker/setup-qemu-action@v1
with:
platforms: arm64
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release_driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release_traceviewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@7
- run: npm i -g npm@8
- name: Deploy Stable
run: bash utils/build/deploy-trace-viewer.sh --stable
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roll_browser_into_playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
- run: npm run build
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests_primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node-version}}
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand All @@ -133,7 +133,7 @@ jobs:
with:
# ESM tests rely on the experimental loader in Node.js 16+
node-version: 16
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand All @@ -150,7 +150,7 @@ jobs:
with:
# Component tests require Node.js 16+ (they require ESM via TS)
node-version: 16
- run: npm i -g npm@8.3
- run: npm i -g npm@8
- run: npm ci
env:
DEBUG: pw:install
Expand Down
Loading