Skip to content

Commit 3b5564f

Browse files
committed
fix: names to run cmds
1 parent f223bdf commit 3b5564f

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -411,16 +411,20 @@ jobs:
411411
with:
412412
node-version: 20
413413
- uses: actions/setup-python@v4
414-
- run: |
414+
- name: install dependencies
415+
run: |
415416
cd packages/profiling-node
416417
yarn install --frozen-lockfile
417-
- run: |
418+
- name: configure node-gyp
419+
run: |
418420
cd packages/profiling-node
419421
yarn build:bindings:configure
420-
- run: |
422+
- name: build lib and bindings
423+
run: |
421424
cd packages/profiling-node
422425
yarn build
423-
- run: |
426+
- name: unit test
427+
run: |
424428
cd packages/profiling-node
425429
yarn test
426430
@@ -1237,11 +1241,13 @@ jobs:
12371241
with:
12381242
node-version-file: 'package.json'
12391243

1240-
- run: |
1244+
- name: install dependencies
1245+
run: |
12411246
cd packages/profiling-node
12421247
yarn install --frozen-lockfile
12431248
1244-
- run: |
1249+
- name: Build lib
1250+
run: |
12451251
cd packages/profiling-node
12461252
yarn build:lib
12471253
@@ -1250,6 +1256,7 @@ jobs:
12501256
name: profiling-node-binaries-${{ github.sha }}
12511257
path: packages/profiling-node/lib/
12521258

1253-
- run: |
1259+
- name: pack profiling node
1260+
run: |
12541261
cd packages/profiling-node
12551262
yarn pack

0 commit comments

Comments
 (0)