Skip to content

Commit

Permalink
fix: added setup
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSolDev committed Jan 9, 2025
1 parent 00cfe46 commit c3238d0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Setup Node and Foundry
description: Comprehensive setup for Node.js environment with Foundry toolchain

runs:
using: composite
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- uses: actions/setup-node@v4
with:
node-version: 20.x
check-latest: true
cache: yarn

- name: Install dependencies
shell: bash
run: yarn install --frozen-lockfile --audit

0 comments on commit c3238d0

Please sign in to comment.