Skip to content

Commit

Permalink
add action setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
JDMathew committed Sep 6, 2024
1 parent d6ecb29 commit 38c555f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Setup
description: Setup Build Step
inputs:
node-version:
required: true
default: '18.x'

runs:
using: "composite"
steps:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node-version }}
cache: yarn

- name: Install dependencies
shell: bash
run: yarn install

0 comments on commit 38c555f

Please sign in to comment.