npm(deps-dev): bump @typescript-eslint/eslint-plugin from 8.44.0 to 8.46.1 #100
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: Build and Package | |
| on: | |
| push: | |
| branches: [ main, master, develop ] | |
| paths: | |
| - 'src/**' | |
| - 'package*.json' | |
| - 'tsconfig.json' | |
| - 'vitest.config.mjs' | |
| - 'eslint.config.mjs' | |
| - 'action.yml' | |
| - '!.github/workflows/**' | |
| - '!**/*.md' | |
| pull_request: | |
| branches: [ main, master ] | |
| paths: | |
| - 'src/**' | |
| - 'package*.json' | |
| - 'tsconfig.json' | |
| - 'vitest.config.mjs' | |
| - 'eslint.config.mjs' | |
| - 'action.yml' | |
| - '!.github/workflows/**' | |
| - '!**/*.md' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| # Allow builds to run on PRs from anyone, but only on the main repo | |
| if: github.repository == 'diverger/gh-oss-helper' || github.event_name == 'pull_request' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm test | |
| - name: Run TypeScript check | |
| run: npm run check | |
| - name: Build action | |
| run: npm run build | |
| - name: Verify build | |
| run: | | |
| if [ ! -f "dist/index.js" ]; then | |
| echo "❌ Build failed: dist/index.js not found" | |
| exit 1 | |
| fi | |
| echo "✅ Build successful!" | |
| echo "📊 Build output:" | |
| ls -la dist/ | |
| # Only commit dist/ on push to main branches (not on PRs) | |
| - name: Commit dist | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop') | |
| run: | | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "GitHub Action" | |
| # Check if there are changes to commit | |
| if [[ -n $(git status --porcelain dist/) ]]; then | |
| git add dist/ | |
| git commit -m "🤖 Auto-build: Update dist/ folder | |
| Built from commit: ${{ github.sha }} | |
| Workflow: ${{ github.workflow }} | |
| Run: ${{ github.run_number }}" | |
| git push | |
| echo "✅ Committed updated dist/ folder" | |
| else | |
| echo "ℹ️ No changes to dist/ folder" | |
| fi | |
| # For PRs, create build artifact for review | |
| - name: Upload build artifact (PR) | |
| if: github.event_name == 'pull_request' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: built-action | |
| path: dist/ | |
| retention-days: 7 |