mirror of
https://github.com/primer/css.git
synced 2024-12-28 08:31:58 +03:00
21 lines
435 B
YAML
21 lines
435 B
YAML
name: Bundle report
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'src'
|
|
jobs:
|
|
bundle:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 12
|
|
- run: yarn
|
|
- run: yarn dist
|
|
- name: Reporting bundle sizes
|
|
run: script/bundle-size-report.js --all
|
|
|
|
- name: Reporting selector diffs
|
|
run: script/selector-diff-report
|