Skip to content

Commit

Permalink
Actually run CI on the right versions of Node (#2499)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Apr 17, 2024
1 parent 82c57c6 commit 96a4894
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Install Dependencies
description: Sets up Node and its package manager, then installs all dependencies

inputs:
version:
default: 'lts/*'
type: string

runs:
using: composite
steps:
Expand All @@ -12,7 +17,7 @@ runs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: ${{ inputs.version }}
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:

- name: Install Dependencies
uses: ./.github/workflows/actions/install-dependencies
with:
version: ${{ matrix.node }}

- name: Setup Solana Test Validator
id: start-test-validator
Expand Down

0 comments on commit 96a4894

Please sign in to comment.