Skip to content

Commit 7be7dba

Browse files
committed
refactor: only running locally installed dependencies
similar to pinning your dependencies
1 parent e69b981 commit 7be7dba

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: npm run build
3939

4040
- name: Install Playwright
41-
run: npx playwright install chromium
41+
run: npx --no playwright install chromium
4242

4343
- name: Run performance benchmark
4444
run: node test/performance/run-benchmark.cjs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Check changeset status
5252
run: |
5353
echo "Checking changeset status..."
54-
npx @changesets/cli status
54+
npx --no @changesets/cli status
5555
echo "Listing changesets..."
5656
ls -la .changeset/
5757

docs/RELEASE_PROCESS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This project uses [Changesets](https://github.com/changesets/changesets) for ver
1515
After making changes, run:
1616

1717
```bash
18-
npx @changesets/cli
18+
npx --no @changesets/cli
1919
```
2020

2121
This will:
@@ -47,13 +47,13 @@ When you merge the "Version Packages" PR, the **Release workflow** (`.github/wor
4747
### Create a changeset
4848

4949
```bash
50-
npx @changesets/cli
50+
npx --no @changesets/cli
5151
```
5252

5353
### Preview what version would be released
5454

5555
```bash
56-
npx @changesets/cli status
56+
npx --no @changesets/cli status
5757
```
5858

5959
### Manually version packages (done automatically in CI)
@@ -75,7 +75,7 @@ npm run changeset:release
7575
3. **Create changeset**:
7676

7777
```bash
78-
npx @changesets/cli
78+
npx --no @changesets/cli
7979
```
8080

8181
- Select package to bump

0 commit comments

Comments
 (0)