Skip to content

Commit

Permalink
ci: re-define setup stage outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
rozsival committed Oct 31, 2023
1 parent 84ebe44 commit 59c27a0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ env:
jobs:
setup:
runs-on: ubuntu-latest
outputs:
node-version: ${{ steps.set-node-version.outputs.node-version }}
pnpm-version: ${{ steps.set-pnpm-version.outputs.pnpm-version }}
strategy:
matrix:
node-version:
Expand Down Expand Up @@ -45,11 +48,11 @@ jobs:
key: ${{ env.CACHE_KEY }}
path: ${{ env.CACHE_PATH }}
- name: Set node-version
id: node-version
id: set-node-version
run: echo "node-version=${{ matrix.node-version }}" >> $GITHUB_OUTPUT
- name: Set pnpm-version
id: pnpm-version
run: echo "pnpm-version={{ matrix.pnpm-version }}" >> $GITHUB_OUTPUT
id: set-pnpm-version
run: echo "pnpm-version=${{ matrix.pnpm-version }}" >> $GITHUB_OUTPUT
commitlint:
needs: setup
runs-on: ubuntu-latest
Expand Down

0 comments on commit 59c27a0

Please sign in to comment.