Skip to content

Commit 1a6803e

Browse files
refactor: switched to pnpm (#750)
Co-authored-by: Michael Kraus <[email protected]>
1 parent 8a672a7 commit 1a6803e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/01-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
uses: ./.github/actions/pnpm-init
1717

1818
- name: 🔬 Validate repo
19-
run: npm run lint
19+
run: pnpm run lint

.github/workflows/01-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
uses: ./.github/actions/pnpm-init
2222

2323
- name: 👨‍🔬👩‍🔬 Test repo
24-
run: npm run test
24+
run: pnpm run test

.husky/pre-commit

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
npm run generate:api-docs
2-
npm run lint
3-
npm run build
4-
npm run test
1+
pnpm run generate:api-docs
2+
pnpm run lint
3+
pnpm run build
4+
pnpm run test

hygen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ This workspace project contains all templates to generate a boilerplate command.
77
Generate command:
88

99
```shell
10-
npm run generate
10+
pnpm run generate
1111
```

0 commit comments

Comments
 (0)