File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
.github/actions/install-dependencies Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : " Install Dependencies"
2
2
description : " Install dependencies, fetching from cache when possible"
3
- inputs :
4
- node-version :
5
- description : the version of Node.js to install
6
- default : 20.18.0
7
3
8
4
runs :
9
5
using : " composite"
13
9
with :
14
10
version : 9
15
11
16
- - name : Install Node.js ${{ inputs.node-version }}
12
+ - name : Install Node.js
17
13
uses : actions/setup-node@v4
18
14
with :
19
- node-version : ${{ inputs.node-version }}
15
+ node-version : 20.18.0
20
16
cache : " pnpm"
21
17
registry-url : " https://registry.npmjs.org"
22
18
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ pnpm run code:checks
102
102
Attempt to auto-fix any issues with the format, lint and type checks:
103
103
104
104
``` sh
105
- pnpm run fix:checks
105
+ pnpm run code:fixes
106
106
```
107
107
108
108
## Testing the code
You can’t perform that action at this time.
0 commit comments