Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Nov 3, 2023
1 parent 0149ccc commit 9d5406b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: 'Dependencies'
description: 'Installs and builds dependencies for Cauldron'
inputs:
packages-react:
type: boolean
default: false
packages-styles
type: boolean
default: false

runs:
using: 'composite'
Expand All @@ -10,7 +17,12 @@ runs:
cache: yarn
cache-dependency-path: '**/yarn.lock'
- run: |
echo '${INSTALL_PACKAGES_REACT}'
echo '${INSTALL_PACKAGES_STYLES}'
yarn install --frozen-lockfile
yarn install --cwd packages/react --frozen-lockfile
yarn install --cwd packages/styles --frozen-lockfile
shell: bash
shell: bash
env:
INSTALL_PACKAGES_REACT: ${{ inputs['packages-react'] }}
INSTALL_PACKAGES_STYLES: ${{ inputs['packages-styles'] }}

0 comments on commit 9d5406b

Please sign in to comment.