chore(main): release lighthouse-mcp 1.4.0 (#139) #147
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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Manual trigger as backup | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| tag_name: ${{ steps.release.outputs.tag_name }} | |
| version: ${{ steps.release.outputs.version }} | |
| pr: ${{ steps.release.outputs.pr }} | |
| steps: | |
| - name: Run Release Please | |
| id: release | |
| uses: googleapis/release-please-action@v4 | |
| with: | |
| # GitHub token for creating PRs and releases | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # Use manifest-based configuration (advanced setup) | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json | |
| - name: Show Release Info | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| echo "Release created: ${{ steps.release.outputs.release_created }}" | |
| echo "Tag: ${{ steps.release.outputs.tag_name }}" | |
| echo "Version: ${{ steps.release.outputs.version }}" | |
| echo "PR: ${{ steps.release.outputs.pr }}" | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: release-please | |
| if: ${{ needs.release-please.outputs.release_created }} | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.x" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run linting | |
| run: npm run lint | |
| - name: Run type checking | |
| run: npx tsc --noEmit | |
| - name: Run tests | |
| run: npm run test:run | |
| - name: Build project | |
| run: npm run build | |
| - name: Publish to NPM | |
| run: npm publish --provenance --access public |