-
Notifications
You must be signed in to change notification settings - Fork 19
39 lines (37 loc) · 1.03 KB
/
ci-statoscope.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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