Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actually run CI on the right versions of Node #2499

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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