Skip to content

Commit

Permalink
fix: actions syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
skinread committed Feb 3, 2025
1 parent 025088c commit bfa659e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
- name: Setup environment
id: setups
run: |-
echo "yarn_cache=$((yarn cache dir))" >> "$GITHUB_OUTPUT"
echo "node_version=$((jq -r '.volta.node' package.json))" >> "$GITHUB_OUTPUT"
yarn_cache_dir=$(yarn cache dir)
volta_node_version=$(jq -r '.volta.node' package.json)
echo "yarn_cache=$yarn_cache_dir" >> "$GITHUB_OUTPUT"
echo "node_version=$volta_node_version" >> "$GITHUB_OUTPUT"
- name: Setup Node ${{ steps.setups.outputs.node_version }}
uses: actions/setup-node@main
Expand Down

0 comments on commit bfa659e

Please sign in to comment.