Skip to content

Commit abafaa5

Browse files
committed
fix min release age
1 parent 7ad3174 commit abafaa5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
node-version: ${{ steps.node-version.outputs.version }}
7878
cache: 'npm'
7979
- run: npm ci
80-
- run: npm install @playwright/test@${{ matrix.playwright-version }} --no-save --min-release-age=0
80+
- run: npm install --no-save --min-release-age=0 @playwright/test@${{ matrix.playwright-version }}
8181
- run: npx playwright install --with-deps chromium
8282
- run: |
8383
npm run test:timings

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"test:all": "npm run test:e2e && npm run test:timings && npm run test:merge && npm run test:lanes",
4545
"example": "npm run build && node scripts/example.ts",
4646
"example:shards": "npm run example -- --shards",
47-
"pw": "npm i --no-save @playwright/test@$PW",
47+
"pw": "npm i --no-save --min-release-age=0 @playwright/test@$PW",
4848
"pw:versions": "node scripts/pw-versions.ts",
4949
"pw:install": "PLAYWRIGHT_SKIP_BROWSER_GC=1 npx playwright install chromium",
5050
"deps": "npx npm-check-updates -i --format group,dep,repo --cooldown 5"

0 commit comments

Comments
 (0)