Skip to content

Commit 0cae97e

Browse files
author
Fabiana Severin
committed
Adding logs
1 parent 9770fa8 commit 0cae97e

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/build-and-release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
build:
1313
runs-on:
1414
- project-awsaws-lambda-nodejs-runtime-interface-client
15+
timeout-minutes: 15
1516
outputs:
1617
version: ${{ steps.version.outputs.version }}
1718
steps:
@@ -43,11 +44,23 @@ jobs:
4344
- name: Clean build directories
4445
run: rm -rf deps/*/build
4546

46-
- name: Install and build
47+
- name: Install dependencies
4748
run: |
48-
npm ci
49+
echo "Starting npm ci..."
50+
npm ci --verbose
51+
echo "npm ci completed"
52+
53+
- name: Build project
54+
run: |
55+
echo "Starting npm run build..."
4956
npm run build
57+
echo "Build completed"
58+
59+
- name: Pack project
60+
run: |
61+
echo "Starting npm pack..."
5062
npm pack
63+
echo "Pack completed"
5164
5265
- name: Generate checksums
5366
run: |

0 commit comments

Comments
 (0)