build(deps-dev): bump xstate from 4.38.3 to 5.13.2 #79
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
branches: [main] | |
# allow workflow to be called from github.com UI | |
workflow_dispatch: | |
# push: | |
# # This should disable running the workflow on tags | |
# branches: [main] | |
# tags-ignore: | |
# - '**' | |
concurrency: | |
group: pr-${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} | |
jobs: | |
compliance: | |
name: 👌 Compliance | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🖍️ Lint pull request title | |
uses: cocogitto/cocogitto-action@main | |
with: | |
verify: ${{ github.event.pull_request.title }} | |
# - name: 🦋 Check changeset status | |
# run: pnpm exec changeset status --since origin/main | |
checks: | |
name: 💯 Checks | |
concurrency: | |
group: checks-${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
uses: './.github/workflows/checks.yml' |