Skip to content

Commit 6e24ce1

Browse files
fixups
1 parent 58948fd commit 6e24ce1

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: "Install Dependencies"
22
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
73

84
runs:
95
using: "composite"
@@ -13,10 +9,10 @@ runs:
139
with:
1410
version: 9
1511

16-
- name: Install Node.js ${{ inputs.node-version }}
12+
- name: Install Node.js
1713
uses: actions/setup-node@v4
1814
with:
19-
node-version: ${{ inputs.node-version }}
15+
node-version: 20.18.0
2016
cache: "pnpm"
2117
registry-url: "https://registry.npmjs.org"
2218

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pnpm run code:checks
102102
Attempt to auto-fix any issues with the format, lint and type checks:
103103

104104
```sh
105-
pnpm run fix:checks
105+
pnpm run code:fixes
106106
```
107107

108108
## Testing the code

0 commit comments

Comments
 (0)