Skip to content

chore(deps-dev): bump ws from 8.16.0 to 8.17.1 #1424

chore(deps-dev): bump ws from 8.16.0 to 8.17.1

chore(deps-dev): bump ws from 8.16.0 to 8.17.1 #1424

Workflow file for this run

name: 'The Pipeline'
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true
jobs:
extract-branch:
name: 'Fetch branch'
runs-on: ubuntu-latest
outputs:
current_branch: ${{ steps.get-branch.outputs.current_branch }}
steps:
- name: Extract branch name πŸ•Š
id: get-branch
run: echo "current_branch=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
ci:
name: 'CI'
needs:
- extract-branch
uses: ./.github/workflows/ci.yml
builder:
name: 'Builder'
needs:
- extract-branch
- ci
if: ${{ github.event_name == 'push' }}
uses: ./.github/workflows/builder.yml
with:
branch: ${{ needs.extract-branch.outputs.current_branch }}