build(deps-dev): bump @types/node from 22.8.7 to 22.9.0 in /workspace… #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release all workspaces | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
find-changed-workspaces: | |
name: Detect workspace changes | |
runs-on: ubuntu-latest | |
outputs: | |
workspaces: ${{ steps.find-changed-workspaces.outputs.workspaces }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Set up Node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ # Needed for auth | |
- name: Fetch previous commit for check | |
run: git fetch origin '${{ github.event.before }}' | |
- name: Find changed workspaces | |
id: find-changed-workspaces | |
run: node ./scripts/ci/list-workspaces-with-changes.js | |
env: | |
COMMIT_SHA_BEFORE: "${{ github.event.before }}" | |
maybe-release-workspace: | |
name: Maybe release ${{ matrix.workspace }} | |
needs: find-changed-workspaces | |
if: ${{ needs.find-changed-workspaces.outputs.workspaces != '[]' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
workspace: ${{ fromJSON(needs.find-changed-workspaces.outputs.workspaces) }} | |
uses: ./.github/workflows/release_workspace.yml | |
with: | |
workspace: ${{ matrix.workspace }} | |
secrets: inherit |