mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-06 06:36:13 +00:00
16 lines
442 B
YAML
16 lines
442 B
YAML
name: performance
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
compressed-size:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: necolas/compressed-size-action@master
|
|
with:
|
|
build-script: "build -w react-native-web"
|
|
exclude: "./packages/react-native-web/dist/cjs/{index.js,**/*.js}"
|
|
pattern: "./packages/react-native-web/dist/{index.js,**/*.js}"
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|