Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Oct 7, 2024
1 parent 58948fd commit 6e24ce1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: "Install Dependencies"
description: "Install dependencies, fetching from cache when possible"
inputs:
node-version:
description: the version of Node.js to install
default: 20.18.0

runs:
using: "composite"
Expand All @@ -13,10 +9,10 @@ runs:
with:
version: 9

- name: Install Node.js ${{ inputs.node-version }}
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
node-version: 20.18.0
cache: "pnpm"
registry-url: "https://registry.npmjs.org"

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pnpm run code:checks
Attempt to auto-fix any issues with the format, lint and type checks:

```sh
pnpm run fix:checks
pnpm run code:fixes
```

## Testing the code
Expand Down

0 comments on commit 6e24ce1

Please sign in to comment.