2024-04-04 04:31:29 +02:00
|
|
|
|
# Credit for fingerprint action https://github.com/expo/expo
|
2024-03-15 20:28:21 +01:00
|
|
|
|
# https://github.com/expo/expo/blob/main/.github/workflows/pr-labeler.yml
|
|
|
|
|
---
|
2024-05-29 01:38:24 +02:00
|
|
|
|
name: PR Tests
|
2024-03-15 20:28:21 +01:00
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [main]
|
|
|
|
|
pull_request:
|
|
|
|
|
types: [opened, synchronize]
|
|
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
|
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
|
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
2024-04-05 17:58:28 +02:00
|
|
|
|
permissions:
|
|
|
|
|
pull-requests: write
|
|
|
|
|
actions: write
|
|
|
|
|
contents: read
|
|
|
|
|
|
2024-03-15 20:28:21 +01:00
|
|
|
|
jobs:
|
2024-04-04 04:31:29 +02:00
|
|
|
|
webpack-analyzer:
|
|
|
|
|
runs-on: ubuntu-22.04
|
2024-05-29 01:38:24 +02:00
|
|
|
|
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request'}}
|
2024-04-04 04:31:29 +02:00
|
|
|
|
steps:
|
|
|
|
|
- name: ⬇️ Checkout
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
with:
|
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
|
|
- name: 🔧 Setup Node
|
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
|
with:
|
|
|
|
|
node-version-file: .nvmrc
|
|
|
|
|
cache: yarn
|
|
|
|
|
|
|
|
|
|
- name: Ensure tracking relevant branches and checkout base
|
|
|
|
|
run: |
|
|
|
|
|
git checkout ${{ github.head_ref }}
|
|
|
|
|
git checkout ${{ github.base_ref }}
|
|
|
|
|
|
|
|
|
|
- name: Get the base commit
|
|
|
|
|
id: base-commit
|
|
|
|
|
run: echo base-commit=$(git log -n 1 ${{ github.base_ref }} --pretty=format:'%H') >> "$GITHUB_OUTPUT"
|
|
|
|
|
|
|
|
|
|
- name: Merge PR commit
|
|
|
|
|
run: |
|
|
|
|
|
# Have to set a git config for the merge to work
|
|
|
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
|
git config --global user.name "github-actions[bot]"
|
|
|
|
|
git merge --no-edit ${{ github.head_ref }}
|
2024-04-05 06:19:38 +02:00
|
|
|
|
yarn install
|
2024-04-04 04:31:29 +02:00
|
|
|
|
|
|
|
|
|
- name: 🔦 Generate stats file for PR
|
|
|
|
|
run: |
|
|
|
|
|
yarn generate-webpack-stats-file
|
|
|
|
|
mv stats.json ../stats-new.json
|
|
|
|
|
|
|
|
|
|
- name: ⬇️ Get base stats from cache
|
|
|
|
|
id: get-base-stats
|
|
|
|
|
uses: actions/cache@v4
|
|
|
|
|
with:
|
|
|
|
|
path: stats-base.json
|
|
|
|
|
key: stats-base-${{ steps.base-commit.outputs.base-commit }}
|
|
|
|
|
|
|
|
|
|
- name: Restore to base commit
|
|
|
|
|
if: ${{ !steps.get-base-stats.outputs.cache-hit }}
|
|
|
|
|
run: |
|
|
|
|
|
git reset HEAD~
|
|
|
|
|
git restore .
|
|
|
|
|
|
|
|
|
|
- name: 🔦 Generate stats file from base commit
|
|
|
|
|
if: ${{ !steps.get-base-stats.outputs.cache-hit }}
|
|
|
|
|
run: |
|
2024-04-05 06:19:38 +02:00
|
|
|
|
yarn install
|
2024-04-04 04:31:29 +02:00
|
|
|
|
yarn generate-webpack-stats-file
|
|
|
|
|
mv stats.json stats-base.json
|
|
|
|
|
|
|
|
|
|
- name: % Get diff
|
|
|
|
|
id: get-diff
|
|
|
|
|
uses: NejcZdovc/bundle-size-diff@v1
|
|
|
|
|
with:
|
|
|
|
|
base_path: 'stats-base.json'
|
|
|
|
|
pr_path: '../stats-new.json'
|
2024-04-04 05:59:33 +02:00
|
|
|
|
excluded_assets: '(.+).chunk.js|(.+).js.map|(.+).json|(.+).png'
|
2024-04-04 04:31:29 +02:00
|
|
|
|
|
2024-04-04 22:52:38 +02:00
|
|
|
|
- name: 💬 Drop a comment
|
|
|
|
|
uses: marocchino/sticky-pull-request-comment@v2
|
2024-04-04 04:31:29 +02:00
|
|
|
|
with:
|
2024-04-04 22:52:38 +02:00
|
|
|
|
header: bundle-diff
|
|
|
|
|
message: |
|
2024-04-04 04:31:29 +02:00
|
|
|
|
| Old size | New size | Diff |
|
|
|
|
|
|----------|----------|-----------------------|
|
|
|
|
|
| ${{ steps.get-diff.outputs.base_file_string }} | ${{ steps.get-diff.outputs.pr_file_string }} | ${{ steps.get-diff.outputs.diff_file_string }} (${{ steps.get-diff.outputs.percent }}%) |
|
2024-04-04 22:52:38 +02:00
|
|
|
|
---
|
2024-04-04 04:31:29 +02:00
|
|
|
|
|
2024-05-29 01:38:24 +02:00
|
|
|
|
fingerprint-native:
|
2024-03-15 20:28:21 +01:00
|
|
|
|
runs-on: ubuntu-22.04
|
2024-05-29 01:38:24 +02:00
|
|
|
|
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request'}}
|
2024-03-15 20:28:21 +01:00
|
|
|
|
steps:
|
|
|
|
|
- name: ⬇️ Checkout
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
with:
|
|
|
|
|
fetch-depth: 100
|
|
|
|
|
|
|
|
|
|
- name: ⬇️ Fetch commits from base branch
|
|
|
|
|
run: git fetch origin main:main --depth 100
|
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
|
|
|
|
|
|
- name: 🔧 Setup Node
|
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
|
with:
|
|
|
|
|
node-version-file: .nvmrc
|
|
|
|
|
cache: yarn
|
|
|
|
|
|
2024-05-29 01:38:24 +02:00
|
|
|
|
- name: 📷 Check fingerprint and install dependencies
|
2024-03-15 20:28:21 +01:00
|
|
|
|
id: fingerprint
|
2024-05-29 01:38:24 +02:00
|
|
|
|
uses: bluesky-social/github-actions/fingerprint-native@main
|
2024-03-15 20:28:21 +01:00
|
|
|
|
with:
|
2024-05-29 01:38:24 +02:00
|
|
|
|
profile: pull-request
|
2024-03-15 20:28:21 +01:00
|
|
|
|
|
2024-04-04 22:52:38 +02:00
|
|
|
|
- name: 💬 Drop a comment
|
|
|
|
|
uses: marocchino/sticky-pull-request-comment@v2
|
2024-05-29 01:38:24 +02:00
|
|
|
|
if: ${{ steps.fingerprint.outputs.includes-changes }}
|
2024-03-15 20:28:21 +01:00
|
|
|
|
with:
|
2024-04-04 22:52:38 +02:00
|
|
|
|
header: fingerprint-diff
|
|
|
|
|
message: |
|
2024-05-29 01:38:24 +02:00
|
|
|
|
The Pull Request introduced fingerprint changes against the base commit:
|
2024-03-15 20:28:21 +01:00
|
|
|
|
<details><summary>Fingerprint diff</summary>
|
|
|
|
|
|
2024-04-04 22:52:38 +02:00
|
|
|
|
```json
|
2024-05-29 01:38:24 +02:00
|
|
|
|
${{ steps.fingerprint.outputs.diff }}
|
2024-04-04 22:52:38 +02:00
|
|
|
|
```
|
2024-03-15 20:28:21 +01:00
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
*Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖*
|
|
|
|
|
|
2024-04-04 22:52:38 +02:00
|
|
|
|
- name: 💬 Delete comment
|
|
|
|
|
uses: marocchino/sticky-pull-request-comment@v2
|
2024-05-29 01:38:24 +02:00
|
|
|
|
if: ${{ !steps.fingerprint.outputs.includes-changes }}
|
2024-03-15 20:28:21 +01:00
|
|
|
|
with:
|
2024-04-04 22:52:38 +02:00
|
|
|
|
header: fingerprint-diff
|
|
|
|
|
delete: true
|
2024-03-15 20:28:21 +01:00
|
|
|
|
|