fix(ci): lockfile regeneration on Dependabot PRs #1039
Workflow file for this run
This file contains hidden or 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: Explorer | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - release/* | |
| - feat/multichain | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - release/* | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-explorer: | |
| # Skip initial Dependabot PR run - will re-run after lockfile update | |
| if: github.actor != 'dependabot[bot]' || github.event.action == 'synchronize' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: explorer | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v6 | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| - name: Build | |
| run: pnpm run build | |
| - name: Add build summary | |
| run: | | |
| echo "## Explorer build result" >> $GITHUB_STEP_SUMMARY | |
| echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |