File tree 2 files changed +5
-27
lines changed
2 files changed +5
-27
lines changed Original file line number Diff line number Diff line change 15
15
uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
- - uses : pnpm/action-setup@v4
19
- with :
20
- version : 9
21
- - uses : actions/setup-node@v4
18
+ - uses : ./.github/actions/setup-env
22
19
with :
23
20
node-version : 22
24
- cache : " pnpm"
25
21
- name : Install
26
22
run : pnpm install --no-frozen-lockfile
27
23
- name : Changeset Check
47
43
uses : actions/checkout@v4
48
44
with :
49
45
fetch-depth : 0
50
- - uses : pnpm/action-setup@v4
51
- with :
52
- version : 9
53
- - uses : actions/setup-node@v4
46
+ - uses : ./.github/actions/setup-env
54
47
with :
55
48
node-version : 22
56
- cache : " pnpm"
57
49
- name : Install
58
50
run : pnpm install --no-frozen-lockfile
59
51
- name : Run full check (build, lint and test)
71
63
uses : actions/checkout@v4
72
64
with :
73
65
fetch-depth : 0
74
- - uses : pnpm/action-setup@v4
75
- with :
76
- version : 9
77
- - uses : actions/setup-node@v4
66
+ - uses : ./.github/actions/setup-env
78
67
with :
79
68
node-version : 22
80
- cache : " pnpm"
81
69
- name : Install
82
70
run : pnpm install --no-frozen-lockfile
83
71
- name : Apply and commit changesets
Original file line number Diff line number Diff line change 65
65
66
66
steps :
67
67
- uses : actions/checkout@v4
68
- - name : Install pnpm
69
- uses : pnpm/action-setup@v3
70
- with :
71
- version : 9
72
- - uses : actions/setup-node@v4
68
+ - uses : ./.github/actions/setup-env
73
69
with :
74
70
node-version : 22
75
- cache : " pnpm"
76
71
- name : Install dependencies
77
72
run : pnpm install --frozen-lockfile --prefer-offline
78
73
- name : Build
98
93
99
94
steps :
100
95
- uses : actions/checkout@v4
101
- - name : Install pnpm
102
- uses : pnpm/action-setup@v3
103
- with :
104
- version : 9
105
- - uses : actions/setup-node@v4
96
+ - uses : ./.github/actions/setup-env
106
97
with :
107
98
node-version : ${{ matrix.node }}
108
- cache : " pnpm"
109
99
- name : Install dependencies
110
100
run : pnpm install --frozen-lockfile --prefer-offline
111
101
- name : Build
You can’t perform that action at this time.
0 commit comments