mirror of
https://github.com/expo/create-react-native-app.git
synced 2026-03-27 10:01:02 +00:00
* Created bundlewatch action * use compression size action * Update size.yml * flip build script * use prepublishOnly to speed up CI
19 lines
375 B
YAML
19 lines
375 B
YAML
name: 'Size'
|
|
|
|
on:
|
|
pull_request:
|
|
types: [synchronize, opened]
|
|
|
|
jobs:
|
|
size:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
- uses: preactjs/compressed-size-action@v2
|
|
continue-on-error: true
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
pattern: '**/build/*.js'
|