File tree 7 files changed +23
-23
lines changed
7 files changed +23
-23
lines changed Original file line number Diff line number Diff line change
1
+ name : setup-node-pnpm
2
+ description : Setup Node and PNPM
3
+ runs :
4
+ using : " composite"
5
+ steps :
6
+ - name : " setup pnpm"
7
+ uses : " pnpm/action-setup@v4"
8
+ - name : " setup node"
9
+ uses : " actions/setup-node@v4"
10
+ with :
11
+ cache : " pnpm"
12
+ node-version : 22
Original file line number Diff line number Diff line change 15
15
fetch-depth : 0
16
16
ref : ${{ github.event.pull_request.head.ref }}
17
17
repository : ${{ github.event.pull_request.head.repo.full_name }}
18
- - name : " setup pnpm"
19
- uses : " pnpm/action-setup@v4"
20
- - name : " setup node"
21
- uses : " actions/setup-node@v4"
22
- with :
23
- cache : " pnpm"
24
- node-version : 20
18
+ - name : " setup node and pnpm"
19
+ uses : ./.github/actions/setup-node-pnpm
25
20
- name : " setup d2"
26
21
run : " curl -fsSL https://d2lang.com/install.sh | sh -s --"
27
22
- name : " install dependencies"
Original file line number Diff line number Diff line change 17
17
uses : " actions/checkout@v4"
18
18
with :
19
19
fetch-depth : 0
20
- - name : " setup pnpm"
21
- uses : " pnpm/action-setup@v4"
22
- - name : " setup node"
23
- uses : " actions/setup-node@v4"
24
- with :
25
- cache : " pnpm"
26
- node-version : 20
20
+ - name : " setup node and pnpm"
21
+ uses : ./.github/actions/setup-node-pnpm
27
22
- name : " setup d2"
28
23
run : " curl -fsSL https://d2lang.com/install.sh | sh -s --"
29
24
- name : " install dependencies"
Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Checkout repository
15
15
uses : actions/checkout@v4
16
- - name : Install pnpm
17
- uses : pnpm/action-setup@v4
18
- - name : Set up Node
19
- uses : actions/setup-node@v4
20
- with :
21
- cache : " pnpm"
22
- node-version : 20
16
+ - name : " setup node and pnpm"
17
+ uses : ./.github/actions/setup-node-pnpm
23
18
- name : Install dependencies
24
19
run : pnpm install
25
20
- name : Check format
Original file line number Diff line number Diff line change 14
14
- name : Checkout repository
15
15
uses : actions/checkout@v4
16
16
- name : Spell check
17
- uses : crate-ci/typos@v1.24.6
17
+ uses : crate-ci/typos@v1.32.0
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ How to get docs running on your local machine for development.
9
9
10
10
### Prerequisites
11
11
12
- - [ node] ( https://nodejs.org )
12
+ - [ node 22 ] ( https://nodejs.org )
13
13
- [ pnpm] ( https://pnpm.io/installation )
14
14
- [ d2] ( https://d2lang.com/ ) (optional for development - used for generating diagrams)
15
15
Original file line number Diff line number Diff line change 37
37
"prettier-plugin-organize-imports" : " ^4.1.0" ,
38
38
"prettier-plugin-svelte" : " ^3.3.3"
39
39
},
40
+ "engines" : {
41
+ "node" : " 22.x"
42
+ },
40
43
"packageManager" :
" [email protected] +sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
41
44
}
You can’t perform that action at this time.
0 commit comments