Skip to content

covidence/packtracker-github-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action to report webpack stats to packtracker.io

This GitHub action will upload your webpack build stats to the packtracker.io service.

Configuration

Secrets (Required)

Environment variables (Optional)

  • WEBPACK_CONFIG_PATH - the relative path to your webpack configuration (if you have one)

Workflow

A sample workflow file might look something like this

workflow "packtracker.io" {
  on = "push"
  resolves = ["Report to packtracker.io"]
}

action "Report to packtracker.io" {
  uses = "packtracker/github-action@1.1.2"
  secrets = ["PT_PROJECT_TOKEN"]
  env = {
    "WEBPACK_CONFIG_PATH" = "./config/webpack/production.js"
  }
}

Packages

No packages published

Languages

  • JavaScript 49.0%
  • Dockerfile 26.4%
  • Shell 24.6%