Skip to content

Commit 0b6346a

Browse files
Add name to build step and pipe npm install to /dev/null
Signed-off-by: Xavier Geerinck <[email protected]>
1 parent 8973459 commit 0b6346a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
node-version: ${{ env.NODE_VER }}
2929
registry-url: 'https://registry.npmjs.org'
3030

31-
- run: ./scripts/build.sh
31+
- name: Build Package
32+
run: ./scripts/build.sh
3233

3334
- name: Is Release?
3435
if: startswith(github.ref, 'refs/tags/v')

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo "====================================================="
1313
echo "Installing Dependencies"
1414
echo "Note: if EEXIST: file already exists on tsc, run `npm uninstall -g tsc`"
1515
npm install -g typescript
16-
npm install
16+
npm install > /dev/null
1717

1818
# Prepare build
1919
echo "Preparing Build"

0 commit comments

Comments
 (0)