1.0.0 • Published 4 years ago

@jsenv/file-size-merge-impact v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

file-size-merge-impact

Monitor pull request impact on specific file sizes.

github package npm package workflow status codecov

Table of contents

Presentation

@jsenv/file-size-merge-impact analyses a pull request impact on specific files size. This analysis is posted in a comment of the pull request.

screenshot of pull request comment

The comment can be expanded to get more details.

screenshot of pull request comment expanded

It can also be configured to track size after compression.

screenshot of pull request comment expanded with compression

How it works

In order to analyse the impact of a pull request on file size the following steps are executed:

  1. Checkout pull request base branch
  2. Execute command to generate files (npm build by default)
  3. Take a snapshot of generated files
  4. Merge pull request into its base
  5. Execute command to generate files again
  6. Take a second snapshot of generated files
  7. Analyse differences between the two snapshots
  8. Post or update comment in the pull request

Usage in github workflow

You need:

Installation with npm

npm install --save-dev @jsenv/file-size-merge-impact

.github/workflows/report-file-size-merge-impact.js

import { reportFileSizeMergeImpact, readGithubWorkflowEnv } from "../../index.js"

reportFileSizeMergeImpact({
  ...readGithubWorkflowEnv(),
  buildCommand: "npm run dist",
  trackingConfig: {
    "dist/commonjs": {
      "./dist/commonjs/**/*": true,
      "./dist/commonjs/**/*.map": false,
    },
  },
})

.github/workflows/file-size-merge-impact.yml

name: file-size-merge-impact

on: pull_request

jobs:
  file-size-merge-impact:
    # Skip workflow for forks because secrets.GITHUB_TOKEN not allowed to post comments
    if: github.event.pull_request.base.repo.full_name == github.event.pull_request.head.repo.full_name
    strategy:
      matrix:
        os: [ubuntu-latest]
        node: [13.12.0]
    runs-on: ${{ matrix.os }}
    name: report file size merge impact
    steps:
      - name: Setup git
        uses: actions/checkout@v2
      - name: Setup node ${{ matrix.node }}
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node }}
      - name: npm install
        run: npm install
      - name: Report file size impact
        run: node ./.github/workflows/report-file-size-merge-impact.js
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Usage outside github workflow

When outside a github workflow you must provide { projectDirectoryUrl, githubToken, repositoryOwner, repositoryName, pullRequestNumber } "manually" to reportFileSizeMergeImpact.

For Travis it would be something as below.

import { reportFileSizeMergeImpact } from "@jsenv/lighthouse-score-merge-impact"

reportFileSizeMergeImpact({
  projectDirectoryUrl: process.env.TRAVIS_BUILD_DIR,
  githubToken: process.env.GITHUB_TOKEN, // make it available somehow
  repositoryOwner: process.env.TRAVIS_REPO_SLUG.split("/")[0],
  repositoryName: process.env.TRAVIS_REPO_SLUG.split("/")[1],
  pullRequestNumber: process.env.TRAVIS_PULL_REQUEST,

  buildCommand: "npm run dist",
  trackingConfig: {
    "dist/commonjs": {
      "./dist/commonjs/**/*": true,
      "./dist/commonjs/**/*.map": false,
    },
  },
})

Please note reportFileSizeMergeImpact must be called in a state where your git repository has been cloned and you are currently on the pull request branch. Inside github workflow this is done by the following lines in file-size-merge-impact.yml.

uses: actions/checkout@v2
uses: actions/setup-node@v1
with:
  node-version: ${{ matrix.node }}
run: npm install

In your CI you must replicate this, the corresponding commands looks as below:

git init
git remote add origin $GITHUB_REPOSITORY_URL
git fetch --no-tags --prune --depth=1 origin $PULL_REQUEST_HEAD_REF
git checkout origin/$PULL_REQUEST_HEAD_REF
npm install

See also