File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 36
36
echo "EOF" >> $GITHUB_OUTPUT
37
37
- name : Create the release
38
38
if : steps.changelog.outputs.changelog_content != ''
39
- uses : softprops/action-gh-release@v1
39
+ uses : softprops/action-gh-release@v2
40
40
with :
41
41
name : ${{ github.ref_name }}
42
42
body : ' ${{ steps.changelog.outputs.changelog_content }}'
Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ jobs:
14
14
- name : Checkout the repository
15
15
uses : actions/checkout@v4
16
16
- name : Install pnpm
17
- uses : pnpm/action-setup@v2
17
+ uses : pnpm/action-setup@v4
18
18
with :
19
19
version : 9
20
20
- name : Install Node.js
21
- uses : actions/setup-node@v3
21
+ uses : actions/setup-node@v4
22
22
with :
23
23
node-version : 22
24
24
cache : pnpm
25
25
- name : Install dependencies
26
- run : pnpm install --frozen-lockfile
26
+ run : pnpm install
27
27
- name : Run tests
28
28
run : pnpm test
29
29
short :
@@ -38,15 +38,15 @@ jobs:
38
38
- name : Checkout the repository
39
39
uses : actions/checkout@v4
40
40
- name : Install pnpm
41
- uses : pnpm/action-setup@v2
41
+ uses : pnpm/action-setup@v4
42
42
with :
43
43
version : 9
44
44
- name : Install Node.js ${{ matrix.node-version }}
45
- uses : actions/setup-node@v3
45
+ uses : actions/setup-node@v4
46
46
with :
47
47
node-version : ${{ matrix.node-version }}
48
48
cache : pnpm
49
49
- name : Install dependencies
50
- run : pnpm install --frozen-lockfile
50
+ run : pnpm install
51
51
- name : Run unit tests
52
52
run : ./node_modules/.bin/vitest --run
You can’t perform that action at this time.
0 commit comments