add share button #373
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: Analyze Bundle Size | |
| # Run this workflow on every Pull Request action as well as all pushes to master | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "analyze" | |
| analyze: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v2 | |
| # Next.js runs on Node—we need to set this up first. | |
| - name: Setup Node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "15.x" | |
| # Run `npm install`, using a cache | |
| - name: Install | |
| uses: bahmutov/npm-install@v1 | |
| - name: Build & analyze | |
| run: mkdir -p .next/analyze/master && npm run analyze | tee .next/analyze/output.txt | |
| - name: Upload bundle | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: bundle | |
| path: | | |
| .next/analyze/client.html | |
| .next/analyze/bundle.json | |
| - name: Download master JSON | |
| uses: dawidd6/action-download-artifact@v2 | |
| if: success() && github.event.number | |
| with: | |
| workflow: bundle-size.yml | |
| # workflow_conclusion: success # https://github.com/dawidd6/action-download-artifact/issues/39 | |
| branch: master | |
| path: .next/analyze/master | |
| - name: Compare bundle size | |
| if: success() && github.event.number | |
| run: ls -laR .next/analyze/master && node scripts/compare-bundles.js | |
| # A bit of find & replace on our output text for displaying properly. Save this to an Action variable. | |
| - name: Get comment body | |
| id: get-comment-body | |
| if: success() && github.event.number | |
| run: | | |
| body=$(cat .next/analyze/bundle-comparison.txt) | |
| body="${body//'%'/'%25'}" | |
| body="${body//$'\n'/'%0A'}" | |
| body="${body//$'\r'/'%0D'}" | |
| echo ::set-output name=body::$body | |
| # Looks for a comment with <!-- GH BOT --> somewhere in its body. | |
| - name: Find Comment | |
| uses: peter-evans/find-comment@v1 | |
| if: success() && github.event.number | |
| id: fc | |
| with: | |
| issue-number: ${{ github.event.number }} | |
| body-includes: "<!-- GH BOT -->" | |
| # If no comment exists, make one with the previously saved Action variable! | |
| - name: Create Comment | |
| uses: peter-evans/create-or-update-comment@v1.4.4 | |
| if: success() && github.event.number && steps.fc.outputs.comment-id == 0 | |
| with: | |
| issue-number: ${{ github.event.number }} | |
| body: ${{ steps.get-comment-body.outputs.body }} | |
| # Otherwise, if a comment already exists, replace its body. | |
| - name: Update Comment | |
| uses: peter-evans/create-or-update-comment@v1.4.4 | |
| if: success() && github.event.number && steps.fc.outputs.comment-id != 0 | |
| with: | |
| issue-number: ${{ github.event.number }} | |
| body: ${{ steps.get-comment-body.outputs.body }} | |
| comment-id: ${{ steps.fc.outputs.comment-id }} | |
| edit-mode: replace |