Skip to content

Commit

Permalink
Remove steps that forge matrix, this is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Nov 29, 2023
1 parent 2bf1482 commit 96f3f61
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,8 @@ jobs:
prepare-matrix:
name: Forge Node LTS Matrix
runs-on: ubuntu-22.04
steps:
- id: set-matrix
run: |
echo "node_version=[$NODE_LTS_MAINTENANCE_VERSION, $NODE_LTS_ACTIVE_VERSION]" >> $GITHUB_OUTPUT
outputs:
node_version: ${{ steps.set-matrix.outputs.node_version }}
node_version: [$NODE_LTS_MAINTENANCE_VERSION, $NODE_LTS_ACTIVE_VERSION]
node_lts_maintenance_version: ${{ env.NODE_LTS_MAINTENANCE_VERSION }}
node_lts_active_version: ${{ env.NODE_LTS_ACTIVE_VERSION }}
node_lts_current_version: ${{ env.NODE_LTS_CURRENT_VERSION }}
Expand All @@ -41,7 +37,7 @@ jobs:
- name: Node version ${{ env.NODE_LTS_ACTIVE_VERSION }}
uses: actions/setup-node@v4
with:
node_version: ${{ env.NODE_LTS_ACTIVE_VERSION }}
node-version: ${{ env.NODE_LTS_ACTIVE_VERSION }}
cache: "npm"

- name: Install depedencies
Expand Down

0 comments on commit 96f3f61

Please sign in to comment.