-
-
Notifications
You must be signed in to change notification settings - Fork 63
37 lines (35 loc) · 1.42 KB
/
metrics-report.yml
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
name: Metrics report
on: [pull_request]
jobs:
metrics-report:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.11.1
- name: Restore node_modules cache
uses: actions/cache/restore@v4
with:
path: node_modules
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-node-20-lock-
- run: yarn --frozen-lockfile
- name: Save node_modules cache
uses: actions/cache/save@v4
with:
path: node_modules
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }}
- name: Use node_modules cache for metrics-report-action
uses: actions/cache@v4
with:
path: .github/actions/metrics-report/node_modules
key: yarn-node-20-metrics-report-action-lock-${{ hashFiles('.github/actions/metrics-report/yarn.lock') }}
restore-keys: |
yarn-node-20-metrics-report-action-lock-
- run: yarn --cwd .github/actions/metrics-report install --frozen-lockfile
- uses: ./.github/actions/metrics-report