-
Notifications
You must be signed in to change notification settings - Fork 90
44 lines (44 loc) · 1.17 KB
/
build-docker-hana-nodejs.yml
File metadata and controls
44 lines (44 loc) · 1.17 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
name: Build docker for the HANA Node.js Sample
on:
push:
branches: [ main ]
paths:
- "hana-nodejs/**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: 'Install dependencies and Build'
shell: bash
run: |
pushd './hana-nodejs/app'
npm ci
npm run build --if-present
popd
- name: 'Check for outdated dependencies'
shell: bash
run: |
pushd './hana-nodejs/app'
npm outdated
popd
- name: 'Build Docker Image'
shell: bash
run: |
pushd './hana-nodejs'
make build-image
popd
- name: Slack Notify
uses: rtCamp/action-slack-notify@v2.2.0
if: ${{ failure() }}
env:
SLACK_MESSAGE: 'Build Failed for ${{ env.SAMPLE_NAME }}'
SLACK_WEBHOOK: ${{ secrets.BUILD_FAIL_NOTIFY_SLACK_URL }}