Skip to content

Commit fe89ae2

Browse files
committed
Update workflows
1 parent cb25310 commit fe89ae2

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

.github/dependabot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ updates:
99
- package-ecosystem: npm
1010
directory: /
1111
schedule:
12-
interval: daily
12+
interval: weekly
1313
versioning-strategy: increase
1414
ignore:
1515
- dependency-name: '@types/node'

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ jobs:
1919
node-version: 24
2020
registry-url: https://registry.npmjs.org
2121
- uses: pnpm/action-setup@v5
22+
with:
23+
cache: true
2224
- run: pnpm install
2325
- run: pnpm publish --access=public --no-git-checks --provenance

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@ jobs:
3030
node-version: ${{ matrix.node-version }}
3131
- run: node --version
3232
- uses: pnpm/action-setup@v5
33+
with:
34+
cache: true
3335
- run: pnpm install
3436
- run: pnpm test

.github/workflows/verify.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
with:
2121
node-version: 24
2222
- uses: pnpm/action-setup@v5
23+
with:
24+
cache: true
2325
- run: pnpm install
2426
- run: pnpm build
2527

@@ -31,6 +33,8 @@ jobs:
3133
with:
3234
node-version: 24
3335
- uses: pnpm/action-setup@v5
36+
with:
37+
cache: true
3438
- run: pnpm install
3539
- run: pnpm test --coverage
3640
- uses: codecov/codecov-action@v5
@@ -52,6 +56,8 @@ jobs:
5256
with:
5357
node-version: 24
5458
- uses: pnpm/action-setup@v5
59+
with:
60+
cache: true
5561
- run: pnpm install
5662
- run: pnpm add --save-dev prettier@~${{ matrix.prettier-version }}
5763
- run: pnpm exec prettier --version
@@ -72,6 +78,8 @@ jobs:
7278
with:
7379
node-version: 24
7480
- uses: pnpm/action-setup@v5
81+
with:
82+
cache: true
7583
- run: pnpm install
7684
- run: pnpm add --save-dev prettier@~${{ matrix.prettier-version }}
7785
- run: pnpm exec prettier --version
@@ -85,6 +93,8 @@ jobs:
8593
with:
8694
node-version: 24
8795
- uses: pnpm/action-setup@v5
96+
with:
97+
cache: true
8898
- run: pnpm install
8999
- run: pnpm lint:check
90100

@@ -96,5 +106,7 @@ jobs:
96106
with:
97107
node-version: 24
98108
- uses: pnpm/action-setup@v5
109+
with:
110+
cache: true
99111
- run: pnpm install
100112
- run: pnpm typecheck

0 commit comments

Comments
 (0)