mise-action/.github/workflows/auto-update-dist.yml
jdx 6d0fd75ed5
fix: run auto-update-dist workflow on all PRs
Removes path filters so the workflow runs on every PR, ensuring
dist/ is always up to date regardless of which files changed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-31 09:44:13 -05:00

30 lines
555 B
YAML

name: Auto-update Distribution
on:
pull_request:
permissions:
contents: read
jobs:
update-dist:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build and package
run: npm run all
- name: autofix.ci
uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c