chore(Queries): query result component refactoring [YTFRONT-4423] #154
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[ci]: Statoscope" | |
on: | |
pull_request: | |
jobs: | |
verify_files: | |
name: Statoscope | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.x" | |
cache: "npm" | |
- name: Install Packages | |
run: npm ci | |
- name: Analyze build | |
run: | | |
cd packages/ui | |
npm run build:analyze | |
mv dist/public/build/stats.json . | |
cp statoscope.config.js statoscope.config.js.bak | |
- name: Analyze previos build | |
run: | | |
cd packages/ui | |
git reset --hard ${{ github.event.pull_request.base.sha }} | |
npm ci | |
npm run build:analyze | |
mv dist/public/build/stats.json ./prev-stats.json | |
- name: Validate | |
run: | | |
cd packages/ui | |
cp statoscope.config.js.bak statoscope.config.js | |
npx statoscope validate -i ./stats.json -r ./prev-stats.json |