Skip to content

Commit d7d8d9b

Browse files
committed
chore: update workflow
1 parent 6ad56fd commit d7d8d9b

2 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [16]
11+
node-version: [20]
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
# Setup .npmrc file to publish to npm
17-
- uses: pnpm/action-setup@v2.2.2
17+
- uses: pnpm/action-setup@v4
1818
with:
1919
version: 7
2020

2121
- name: node_modules cache
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
id: node_modules-cache
2424
with:
2525
path: ./node_modules
2626
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/pnpm-lock.yaml') }}
2727

2828
- name: pnpm cache
2929
if: steps.node_modules-cache.outputs.cache-hit != 'true'
30-
uses: actions/cache@v3
30+
uses: actions/cache@4
3131
id: pnpm-store
3232
with:
33-
path: ~/.pnpm-store/v3
33+
path: ~/.pnpm-store/v4
3434
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
3535
restore-keys: |
3636
${{ runner.os }}-pnpm-

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
> - :nail_care: [Polish]
1111
1212
---
13+
## [1.5.0] - 2025-01-01
14+
15+
#### - :nail_care: [Polish]
16+
17+
- update packages & github actions
18+
- migrate from mocha to vitest
19+
1320
## [1.4.0] - 2023-07-30
1421

1522
#### - :boom: [Breaking Change]

0 commit comments

Comments
 (0)