mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-18 13:58:44 -04:00
* Don't overwrite description in Suggestions/TaxonSearch; closes #1913 * Fix TS * Remove unused code related to adding/editing comments in Suggestions/TSearch * Remove test about showing comments on Suggestions
20 lines
353 B
Bash
Executable File
20 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
BASELINE_BRANCH=${GITHUB_BASE_REF:="main"}
|
|
|
|
# Required for `git switch` on CI
|
|
git fetch origin
|
|
|
|
# Gather baseline perf measurements
|
|
git switch "$BASELINE_BRANCH"
|
|
|
|
npm install
|
|
npm run reassure -- --baseline
|
|
|
|
# Gather current perf measurements & compare results
|
|
git switch --detach -
|
|
|
|
npm install
|
|
npm run reassure -- --branch
|