mirror of
https://github.com/primer/css.git
synced 2024-12-29 17:12:27 +03:00
24 lines
476 B
YAML
24 lines
476 B
YAML
name: Bundle report
|
|
on: [push]
|
|
jobs:
|
|
bundle:
|
|
name: Bundle report
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@master
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@master
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Build
|
|
run: yarn dist
|
|
|
|
- name: Reporting bundle sizes
|
|
run: script/bundle-size-report.js --all
|