-
-
Notifications
You must be signed in to change notification settings - Fork 246
53 lines (45 loc) · 1.13 KB
/
metrics.yml
File metadata and controls
53 lines (45 loc) · 1.13 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Node Metrics
on:
workflow_dispatch:
push:
branches:
- main
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repo
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v6
with:
check-latest: true
node-version: 24
- name: Install dependencies
run: npm i --ignore-scripts
- name: Run metrics
run: |
npm run metrics:run
npm run metrics:summary
- name: Commit and push updated results
uses: github-actions-x/commit@722d56b8968bf00ced78407bbe2ead81062d8baa # v2.9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'main'
commit-message: 'chore: update metrics results'
force-add: 'true'
rebase: 'true'
files: METRICS.md
name: Github Actions
email: <>